From 273af4f27e63b03d40d75076c26a4c176ea4a99d Mon Sep 17 00:00:00 2001 From: Konloch Date: Sat, 22 Jan 2022 13:54:05 -0600 Subject: [PATCH] Code Cleanup --- .../the/bytecode/club/bytecodeviewer/api/PluginConsole.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/api/PluginConsole.java b/src/main/java/the/bytecode/club/bytecodeviewer/api/PluginConsole.java index 2d72f27e..c0200a26 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/api/PluginConsole.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/api/PluginConsole.java @@ -37,7 +37,8 @@ public class PluginConsole extends SystemConsole public PluginConsole(String pluginName) { - super(Configuration.pluginConsoleAsNewTab ? (pluginName + " Output") : (TranslatedStrings.PLUGIN_CONSOLE_TITLE + " - " + pluginName)); + super(Configuration.pluginConsoleAsNewTab ? (pluginName + " Output") + : (TranslatedStrings.PLUGIN_CONSOLE_TITLE + " - " + pluginName)); } @Override