Better Decompiler API Usage

This commit is contained in:
Konloch 2024-10-02 17:41:14 -06:00
parent 0db6dcbd27
commit 995c0ffede

AI 샘플 코드 생성 중입니다

Loading...
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ public class ASMDisassembler extends AbstractDecompiler
exception = ExceptionUtils.exceptionToString(e);
}
return "ASM Disassembler " + ERROR + "! " + ExceptionUI.SEND_STACKTRACE_TO + NL + NL
return getDecompilerName() + " " + ERROR + "! " + ExceptionUI.SEND_STACKTRACE_TO + NL + NL
+ TranslatedStrings.SUGGESTED_FIX_DECOMPILER_ERROR + NL + NL + exception;
}

View File

@ -72,7 +72,7 @@ public class ASMifierGenerator extends AbstractDecompiler
exception = ExceptionUtils.exceptionToString(e);
}
return "ASMifier " + ERROR + "! " + ExceptionUI.SEND_STACKTRACE_TO + NL + NL
return getDecompilerName() + " " + ERROR + "! " + ExceptionUI.SEND_STACKTRACE_TO + NL + NL
+ TranslatedStrings.SUGGESTED_FIX_DECOMPILER_ERROR + NL + NL + exception;
}