mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 16:49:10 +00:00
[CLEANUP] Commented out testing parts
This commit is contained in:
@@ -177,14 +177,19 @@ public class Context {
|
||||
classPath.dump(new File(Directories.getWorkspace(), "dump.jar"));
|
||||
Core.verbose("Done.");
|
||||
}
|
||||
try {
|
||||
Applet applet = Test.invokeZBU();
|
||||
if(applet != null) {
|
||||
setApplet(applet);
|
||||
}
|
||||
} catch (NoSuchMethodException | InvocationTargetException | ClassNotFoundException | IllegalAccessException | NoSuchFieldException | InstantiationException e) {
|
||||
e.printStackTrace();
|
||||
Applet applet = serverProvider.fetchApplet();
|
||||
// if applet is null the server provider will call setApplet itself
|
||||
if(applet != null) {
|
||||
setApplet(applet);
|
||||
}
|
||||
// try {
|
||||
// Applet applet = Test.invokeZBU();
|
||||
// if(applet != null) {
|
||||
// setApplet(applet);
|
||||
// }
|
||||
// } catch (NoSuchMethodException | InvocationTargetException | ClassNotFoundException | IllegalAccessException | NoSuchFieldException | InstantiationException e) {
|
||||
// e.printStackTrace();
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user