Hello, I can't reproduce the problem. Could you please provide all the code related to diff with arguments (what revisions do you use --- numbers, HEAD/WORKING/BASE?)?
It would be good if you could provide any working copy on which the problem is reproducible. From the first glance looks like paths printed are relative to .../MyFile.java, that is a bit strange. -- Dmitry Pavlenko, TMate Software, http://subgit.com/ - git+svn on the server side > 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!