Skip to content

Commit

Permalink
Remove explicitly ignored split packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Alasdair Preston committed Apr 19, 2024
1 parent 5871b82 commit 9a6644f
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,6 @@ public class SplitPackageProcessor {

private static final Logger LOGGER = Logger.getLogger(SplitPackageProcessor.class);

private static final Predicate<String> IGNORE_PACKAGE = new Predicate<>() {

@Override
public boolean test(String packageName) {
// Remove the elements from this list when the original issue is fixed
// so that we can detect further issues.
return packageName.startsWith("io.fabric8.kubernetes");
}
};

@BuildStep
void splitPackageDetection(ApplicationArchivesBuildItem archivesBuildItem,
ArcConfig config,
Expand Down Expand Up @@ -82,9 +72,6 @@ void splitPackageDetection(ApplicationArchivesBuildItem archivesBuildItem,
// - "com.me.app.sub" found in [archiveA, archiveB]
StringBuilder splitPackagesWarning = new StringBuilder();
for (String packageName : packageToArchiveMap.keySet()) {
if (IGNORE_PACKAGE.test(packageName)) {
continue;
}

// skip packages based on pre-built predicates
boolean skipEvaluation = false;
Expand Down

0 comments on commit 9a6644f

Please sign in to comment.