Revert Disassembler TryCatch Label

To keep the disassembler beginner friendly the label should be descriptive to beginners and entry level REs
This commit is contained in:
Konloch 2022-03-23 14:13:15 -05:00
parent 2848d1d4cd
commit 820d867a2f
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ public class MethodNodeDecompiler {
for (int i = 0; i < tryCatchBlocks.size(); i++) {
TryCatchBlockNode o = tryCatchBlocks.get(i);
sb.append(" ");
sb.append("TCB").append(i).append(": L");
sb.append("TryCatch").append(i).append(": L");
sb.append(insnPrinter.resolveLabel(o.start));
sb.append(" to L");
sb.append(insnPrinter.resolveLabel(o.end));