Skip to content

Commit d6da483

Browse files
committed
Fix wrong visitor pass for new synthetic config value
1 parent 8723c23 commit d6da483

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

recaf-core/src/main/java/software/coley/recaf/services/decompile/DecompilerManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,11 +379,11 @@ public byte[] filter(@Nonnull Workspace workspace, @Nonnull JvmClassInfo initial
379379
}
380380
if (config.getFilterSignatures().getValue()) {
381381
if (cv == null) cv = cw.get();
382-
cv = new SyntheticRemovingVisitor(cv);
382+
cv = new IllegalSignatureRemovingVisitor(cv);
383383
}
384384
if (config.getFilterSynthetics().getValue()) {
385385
if (cv == null) cv = cw.get();
386-
cv = new IllegalSignatureRemovingVisitor(cv);
386+
cv = new SyntheticRemovingVisitor(cv);
387387
}
388388
if (config.getFilterDebug().getValue() && cv == null)
389389
cv = cw.get();

0 commit comments

Comments
 (0)