From f2c901d3f8f3bd4db820c8c667c2b95d72bd8ec4 Mon Sep 17 00:00:00 2001 From: ViR Dash Date: Mon, 22 Jun 2015 12:16:17 +0300 Subject: [PATCH] Fix project build Fixed imports pointing to obsolete namespace --- .../club/bytecodeviewer/gui/MainViewerGUI.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/the/bytecode/club/bytecodeviewer/gui/MainViewerGUI.java b/src/the/bytecode/club/bytecodeviewer/gui/MainViewerGUI.java index 9c9cd227..7cde247d 100644 --- a/src/the/bytecode/club/bytecodeviewer/gui/MainViewerGUI.java +++ b/src/the/bytecode/club/bytecodeviewer/gui/MainViewerGUI.java @@ -44,11 +44,11 @@ import the.bytecode.club.bytecodeviewer.obfuscators.rename.RenameFields; import the.bytecode.club.bytecodeviewer.obfuscators.rename.RenameMethods; import the.bytecode.club.bytecodeviewer.plugin.PluginManager; import the.bytecode.club.bytecodeviewer.plugin.preinstalled.CodeSequenceDiagram; -import the.bytecode.club.bytecodeviewer.plugins.AllatoriStringDecrypter; -import the.bytecode.club.bytecodeviewer.plugins.ShowAllStrings; -import the.bytecode.club.bytecodeviewer.plugins.ShowMainMethods; -import the.bytecode.club.bytecodeviewer.plugins.ZKMStringDecrypter; -import the.bytecode.club.bytecodeviewer.plugins.ZStringArrayDecrypter; +import the.bytecode.club.bytecodeviewer.plugin.preinstalled.AllatoriStringDecrypter; +import the.bytecode.club.bytecodeviewer.plugin.preinstalled.ShowAllStrings; +import the.bytecode.club.bytecodeviewer.plugin.preinstalled.ShowMainMethods; +import the.bytecode.club.bytecodeviewer.plugin.preinstalled.ZKMStringDecrypter; +import the.bytecode.club.bytecodeviewer.plugin.preinstalled.ZStringArrayDecrypter; /** * The main file for the GUI.n @@ -1979,4 +1979,4 @@ public class MainViewerGUI extends JFrame implements FileChangeNotifier { return "Optional Library Folder"; } } -} \ No newline at end of file +}