Skip to content

Commit 69620f9

Browse files
committed
fix: use original filename
1 parent a7684fe commit 69620f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/clyze/doop/common/BasicJavaSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private void preprocessInput(Database db, Set<String> tmpDirs,
7272
boolean isZip = filenameL.endsWith(".zip");
7373
boolean isClass = filenameL.endsWith(".class");
7474
boolean isApk = filenameL.endsWith(".apk");
75-
boolean isSpringBoot = parameters.isSpringBootJar(filenameL);
75+
boolean isSpringBoot = parameters.isSpringBootJar(filename);
7676

7777
ArtifactScanner.EntryProcessor gProc = (jarFile, entry, entryName) -> {
7878
if (entryName.endsWith(".properties"))

0 commit comments

Comments
 (0)