Skip to content

Commit 9f5fea9

Browse files
committed
fix: sometime I need to actually test my code before pushing to github...
1 parent 05c91ee commit 9f5fea9

File tree

1 file changed

+1
-1
lines changed
  • cli/src/main/java/org/owasp/dependencycheck

1 file changed

+1
-1
lines changed

cli/src/main/java/org/owasp/dependencycheck/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ private Set<File> scanAntStylePaths(List<String> antStylePaths, int symLinkDepth
379379
String include = file.replace('\\', '/');
380380
final File baseDir;
381381
final int pos = getLastFileSeparator(include);
382-
final String tmpBase = include.substring(0, pos);
382+
String tmpBase = include.substring(0, pos);
383383
//fix for windows style paths scanning c:/temp.
384384
if (tmpBase.endsWith(":")) {
385385
tmpBase += "/";

0 commit comments

Comments
 (0)