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:
parent
10df99c750
commit
84c1834ada
13 changed files with 13 additions and 13 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue