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 2c291c4 commit 1abf876Copy full SHA for 1abf876
src/main/java/org/scm4j/vcs/svn/SVNVCS.java
@@ -63,7 +63,6 @@
63
import org.tmatesoft.svn.core.wc2.SvnTarget;
64
65
public class SVNVCS implements IVCS {
66
-
67
private static final int SVN_PATH_IS_NOT_WORKING_COPY_ERROR_CODE = 155007;
68
private static final int SVN_ITEM_EXISTS_ERROR_CODE = 160020;
69
private static final int SVN_FILE_NOT_FOUND_ERROR_CODE = 160013;
@@ -596,4 +595,10 @@ public VCSCommit getHeadCommit(String branchName) {
596
595
}
597
598
+
599
600
+ @Override
601
+ public String toString() {
602
+ return "SVNVCS [url=" + repo.getRepoUrl() + "]";
603
+ }
604
0 commit comments