Skip to content

Commit dc4c0ad

Browse files
committed
getWorkspace() method added
1 parent 7bfae33 commit dc4c0ad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/org/scm4j/vcs/svn/SVNVCS.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
import org.scm4j.vcs.api.exceptions.EVCSFileNotFound;
6161
import org.scm4j.vcs.api.workingcopy.IVCSLockedWorkingCopy;
6262
import org.scm4j.vcs.api.workingcopy.IVCSRepositoryWorkspace;
63+
import org.scm4j.vcs.api.workingcopy.IVCSWorkspace;
6364

6465
public class SVNVCS implements IVCS {
6566

@@ -545,4 +546,9 @@ public void handleLogEntry(SVNLogEntry logEntry) throws SVNException {
545546
throw new RuntimeException(e);
546547
}
547548
}
549+
550+
@Override
551+
public IVCSWorkspace getWorkspace() {
552+
return repo.getWorkspace();
553+
}
548554
}

0 commit comments

Comments
 (0)