Skip to content

Commit

Permalink
use ASMifier instead of Textifier
Browse files Browse the repository at this point in the history
  • Loading branch information
apkreader committed Dec 17, 2023
1 parent c88c7f2 commit 31256ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public ASMifierDecompiler(JByteMod jbm, DecompilerPanel dp) {
public String decompile(byte[] b, MethodNode mn) {
ClassReader cr = new ClassReader(b);
StringWriter out = new StringWriter();
cr.accept(new TraceClassVisitor(null, new Textifier(), new PrintWriter(
cr.accept(new TraceClassVisitor(null, new ASMifier(), new PrintWriter(
out)), 0);
return out.toString();
}
Expand Down

0 comments on commit 31256ce

Please sign in to comment.