Skip to content

Commit

Permalink
Fix anti-decompilation summarizer not showing illegal name counts due…
Browse files Browse the repository at this point in the history
… to missing count check
  • Loading branch information
Col-E committed Sep 16, 2023
1 parent efb8235 commit 16f7fed
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ public boolean summarize(@Nonnull Workspace workspace,
if (cycleCount > 0 ||
invalidSigCount > 0 ||
dupAnnoCount > 0 ||
longAnnoCount > 0) {
longAnnoCount > 0 ||
illegalNameCount > 0) {
ExecutorService service = ThreadPoolFactory.newSingleThreadExecutor("anti-decompile-patching");
Label title = new BoundLabel(Lang.getBinding("service.analysis.anti-decompile"));
title.getStyleClass().add(Styles.TEXT_BOLD);
Expand Down

0 comments on commit 16f7fed

Please sign in to comment.