Hello, I am getting different output of the diff operation after migrating from svnkit-1.3.7 to svnkit-1.7.4-v1.
The output used to be like this (notice the file path information): Index: /data//source/some/package/MyFile.java =================================================================== --- /data//source/some/package/MyFile.java (revision 162123) +++ /data//source/some/package/MyFile.java (working copy) @@ -35,8 +35,6 @@ ... After the update I am getting this (notice the missing path information): Index: =================================================================== --- (revision 162123) +++ (working copy) @@ -35,8 +35,6 @@ ... Notice that the path/file info is missing ... I already tried to run the diff on a newly checked out workspace but this had no effect. How can I get the path info back? I am using this call to perform the diff: org.tmatesoft.svn.core.wc.SVNDiffClient.doDiff(File, SVNRevision, SVNRevision, SVNRevision, SVNDepth, boolean, OutputStream, Collection) Many thanks!