コード例 #1
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 public long commit(
     String[] path,
     String message,
     int depth,
     boolean noUnlock,
     boolean keepChangelist,
     String[] changelists,
     Map revpropTable)
     throws ClientException {
   return myDelegate.commit(
       path, message, depth, noUnlock, keepChangelist, changelists, revpropTable);
 }
コード例 #2
0
ファイル: SVNClient.java プロジェクト: deleteman/testing
 public long commit(String[] path, String message, boolean recurse, boolean noUnlock)
     throws ClientException {
   return myDelegate.commit(path, message, recurse, noUnlock);
 }