Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 29th, 2012  |  syntax: None  |  size: 0.46 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How is user mapping achieved during migration from MKS to SVN using svn-importer?
  2. /**
  3.      * create a new SVN revision based on MksCommit
  4.      * @param commit MksCommit object used to construct SVN revision
  5.      */
  6. private void createSvnRevision(MksCommit commit) {
  7.     svnModel.createNewRevision(commit.getAuthor(), commit.getDate(), commit.getMessage());
  8.     svnModel.getCurRevision().getProperties().set("MKSRevisionNumbers", commit.joinRevisionNumbers());
  9. }