diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMDisassembler.java b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMDisassembler.java index e3992065..ad7af15c 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMDisassembler.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMDisassembler.java @@ -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; } diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMifierGenerator.java b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMifierGenerator.java index c30598a0..4c62263a 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMifierGenerator.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/ASMifierGenerator.java @@ -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; }