[CLEANUP] Commented out testing parts

This commit is contained in:
JKetelaar
2016-01-10 00:02:54 +01:00
parent ee22d68013
commit 091249d5be
+12 -7
View File
@@ -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();
// }
}
/**