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 7620a61 commit d49e7c0Copy full SHA for d49e7c0
src/main/java/org/scm4j/vcs/svn/SVNVCS.java
@@ -467,7 +467,8 @@ public int compare(SVNDirEntry o1, SVNDirEntry o2) {
467
});
468
for (SVNDirEntry entry : entriesList) {
469
if (entry.getKind() == SVNNodeKind.DIR && entry.getName().startsWith(folderPrefix)) {
470
- res.add((path.isEmpty() ? "" : StringUtils.appendIfMissing(lastFolder, "/")) + entry.getName());
+ String branchName = (path.isEmpty() ? "" : StringUtils.appendIfMissing(lastFolder, "/")) + entry.getName();
471
+ res.add(branchName);
472
}
473
474
0 commit comments