Skip to content

Commit

Permalink
Fix boolen check.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Sep 25, 2024
1 parent 4d4eb6b commit 550b84a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4886,7 +4886,7 @@ public Summary apply(Source source, Target target, List<? extends Plugin.Factory
name = name.substring(1);
}
if (name.endsWith(ClassFileLocator.CLASS_FILE_EXTENSION)
&& (!name.startsWith("META-INF") && name.startsWith(ClassFileLocator.META_INF_VERSIONS))
&& (!name.startsWith("META-INF") || name.startsWith(ClassFileLocator.META_INF_VERSIONS))
&& !name.endsWith(PACKAGE_INFO)
&& !name.endsWith(MODULE_INFO)) {
try {
Expand Down

0 comments on commit 550b84a

Please sign in to comment.