Plugin API Update

With the plugin manager tab changes  the plugin console no longer needs the active resource container name. It only needs the plugin name
This commit is contained in:
Konloch 2021-07-23 15:50:18 -07:00
parent 10df99c750
commit 84c1834ada
13 changed files with 13 additions and 13 deletions

View file

@ -15,7 +15,7 @@ public class ExampleStringDecrypter extends Plugin {
@Override
public void execute(ArrayList<ClassNode> classNodesList) {
PluginConsole gui = new PluginConsole(activeContainer.name + " - Example String Decrypter");
PluginConsole gui = new PluginConsole("Example String Decrypter");
MultipleChoiceDialog dialog = new MultipleChoiceDialog("Bytecode Viewer - WARNING",
"WARNING: This will load the classes into the JVM and execute the initialize function"