From d39885407c335088c3ba9028540205266c76fc3b Mon Sep 17 00:00:00 2001 From: Konloch Date: Wed, 2 Oct 2024 16:12:58 -0600 Subject: [PATCH] Smali Disassembler Error Formatting --- .../bytecodeviewer/decompilers/impl/SmaliDisassembler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/SmaliDisassembler.java b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/SmaliDisassembler.java index 19e5318a..a175cc4d 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/SmaliDisassembler.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/decompilers/impl/SmaliDisassembler.java @@ -128,7 +128,8 @@ public class SmaliDisassembler extends AbstractDecompiler exception += ExceptionUI.SEND_STACKTRACE_TO_NL + sw; } - return SMALI + " " + DISASSEMBLER + " " + ERROR + "! " + ExceptionUI.SEND_STACKTRACE_TO + NL + NL + TranslatedStrings.SUGGESTED_FIX_DECOMPILER_ERROR + NL + NL + exception; + return SMALI + " " + DISASSEMBLER + " " + ERROR + "! " + ExceptionUI.SEND_STACKTRACE_TO + NL + NL + + TranslatedStrings.SUGGESTED_FIX_DECOMPILER_ERROR + NL + NL + exception; } @Override