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 e7d9b14 commit ec44a2aCopy full SHA for ec44a2a
src/main/java/io/github/classgraph/ClasspathElementZip.java
@@ -586,7 +586,7 @@ void scanPaths(final LogNode log) {
586
// Strip package root
587
relativePath = relativePath.substring(packageRoot.length());
588
// Strip final slash from package root
589
- String packageRootWithoutFinalSlash = packageRoot.endsWith("/")
+ final String packageRootWithoutFinalSlash = packageRoot.endsWith("/")
590
? packageRoot.substring(0, packageRoot.length() - 1)
591
: packageRoot;
592
// Store package root for use by getAllURIs()
0 commit comments