We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bfae33 commit dc4c0adCopy full SHA for dc4c0ad
src/main/java/org/scm4j/vcs/svn/SVNVCS.java
@@ -60,6 +60,7 @@
60
import org.scm4j.vcs.api.exceptions.EVCSFileNotFound;
61
import org.scm4j.vcs.api.workingcopy.IVCSLockedWorkingCopy;
62
import org.scm4j.vcs.api.workingcopy.IVCSRepositoryWorkspace;
63
+import org.scm4j.vcs.api.workingcopy.IVCSWorkspace;
64
65
public class SVNVCS implements IVCS {
66
@@ -545,4 +546,9 @@ public void handleLogEntry(SVNLogEntry logEntry) throws SVNException {
545
546
throw new RuntimeException(e);
547
}
548
549
+
550
+ @Override
551
+ public IVCSWorkspace getWorkspace() {
552
+ return repo.getWorkspace();
553
+ }
554
0 commit comments