1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
Description: Dummy compatibility with Subversion 1.7.5 Java APIs
Author: Miguel Landaeta <miguel@miguel.cc>
Bug-Debian: http://bugs.debian.org/678308
Forwarded: no
Last-Update: <2012-06-21>
--- svnkit-1.3.5+dfsg.orig/svnkit/src/org/tigris/subversion/javahl/SVNClient.java
+++ svnkit-1.3.5+dfsg/svnkit/src/org/tigris/subversion/javahl/SVNClient.java
@@ -581,4 +581,27 @@ public class SVNClient implements SVNCli
myDelegate.setRevProperty(path, name, rev, value, originalValue, force);
}
+ public void upgrade(String path) {
+ throw new UnsupportedOperationException("upgrade");
+ }
+
+ public void blame(String path, Revision pegRevision, Revision revisionStart, Revision revisionEnd, boolean ignoreMimeType, boolean includeMergedRevisions, org.tigris.subversion.javahl.BlameCallback3 callback) throws ClientException {
+ throw new UnsupportedOperationException("blame");
+ }
+
+ public void copy(CopySource[] sources, String desPath, String message, boolean copyAsChild, boolean makeParents, boolean ignoreExternals, Map revpropTable) throws ClientException {
+ throw new UnsupportedOperationException("copy");
+ }
+
+ public void getMergeinfoLog(int kind, String pathOrUrl, Revision pegRevision, String mergeSourceUrl, Revision srcPegRevision, boolean discoverChangedPaths, int depth, String[] revProps, LogMessageCallback callbackY) throws ClientException {
+ throw new UnsupportedOperationException("getMergeinfoLog");
+ }
+
+ public void diff(String target1, Revision revision1, String target2, Revision revision2, String relativeToDir, String outFileName, int depth, String[] changelists, boolean ignoreAncestry, boolean noDiffDeleted, boolean force, boolean copiesAsAdds) throws ClientException {
+ throw new UnsupportedOperationException("diff");
+ }
+
+ public void diff(String target, Revision pegRevision, Revision startRevision, Revision endRevision, String relativeToDir, String outFileName, int depth, String[] changelists, boolean ignoreAncestry, boolean noDiffDeleted, boolean force, boolean copiesAsAdd) throws ClientException {
+ throw new UnsupportedOperationException("diff");
+ }
}
--- svnkit-1.3.5+dfsg.orig/svnkit/src/org/tmatesoft/svn/core/javahl/SVNClientImpl.java
+++ svnkit-1.3.5+dfsg/svnkit/src/org/tmatesoft/svn/core/javahl/SVNClientImpl.java
@@ -2235,4 +2235,28 @@ public class SVNClientImpl implements SV
// TODO use original value.
setRevProperty(path, name, rev, value, force);
}
+
+ public void upgrade(String path) {
+ throw new UnsupportedOperationException("upgrade");
+ }
+
+ public void blame(String path, Revision pegRevision, Revision revisionStart, Revision revisionEnd, boolean ignoreMimeType, boolean includeMergedRevisions, org.tigris.subversion.javahl.BlameCallback3 callback) throws ClientException {
+ throw new UnsupportedOperationException("blame");
+ }
+
+ public void copy(CopySource[] sources, String desPath, String message, boolean copyAsChild, boolean makeParents, boolean ignoreExternals, Map revpropTable) throws ClientException {
+ throw new UnsupportedOperationException("copy");
+ }
+
+ public void getMergeinfoLog(int kind, String pathOrUrl, Revision pegRevision, String mergeSourceUrl, Revision srcPegRevision, boolean discoverChangedPaths, int depth, String[] revProps, LogMessageCallback callbackY) throws ClientException {
+ throw new UnsupportedOperationException("getMergeinfoLog");
+ }
+
+ public void diff(String target1, Revision revision1, String target2, Revision revision2, String relativeToDir, String outFileName, int depth, String[] changelists, boolean ignoreAncestry, boolean noDiffDeleted, boolean force, boolean copiesAsAdds) throws ClientException {
+ throw new UnsupportedOperationException("diff");
+ }
+
+ public void diff(String target, Revision pegRevision, Revision startRevision, Revision endRevision, String relativeToDir, String outFileName, int depth, String[] changelists, boolean ignoreAncestry, boolean noDiffDeleted, boolean force, boolean copiesAsAdd) throws ClientException {
+ throw new UnsupportedOperationException("diff");
+ }
}
|