Skip to content

Commit 1abf876

Browse files
committed
toString() method added
1 parent 2c291c4 commit 1abf876

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
import org.tmatesoft.svn.core.wc2.SvnTarget;
6464

6565
public class SVNVCS implements IVCS {
66-
6766
private static final int SVN_PATH_IS_NOT_WORKING_COPY_ERROR_CODE = 155007;
6867
private static final int SVN_ITEM_EXISTS_ERROR_CODE = 160020;
6968
private static final int SVN_FILE_NOT_FOUND_ERROR_CODE = 160013;
@@ -596,4 +595,10 @@ public VCSCommit getHeadCommit(String branchName) {
596595
}
597596

598597
}
598+
599+
600+
@Override
601+
public String toString() {
602+
return "SVNVCS [url=" + repo.getRepoUrl() + "]";
603+
}
599604
}

0 commit comments

Comments
 (0)