Skip to content

Commit ec44a2a

Browse files
committed
Source > Cleanup
1 parent e7d9b14 commit ec44a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/classgraph/ClasspathElementZip.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ void scanPaths(final LogNode log) {
586586
// Strip package root
587587
relativePath = relativePath.substring(packageRoot.length());
588588
// Strip final slash from package root
589-
String packageRootWithoutFinalSlash = packageRoot.endsWith("/")
589+
final String packageRootWithoutFinalSlash = packageRoot.endsWith("/")
590590
? packageRoot.substring(0, packageRoot.length() - 1)
591591
: packageRoot;
592592
// Store package root for use by getAllURIs()

0 commit comments

Comments
 (0)