[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")); classPath.dump(new File(Directories.getWorkspace(), "dump.jar"));
Core.verbose("Done."); Core.verbose("Done.");
} }
try { Applet applet = serverProvider.fetchApplet();
Applet applet = Test.invokeZBU(); // if applet is null the server provider will call setApplet itself
if(applet != null) { if(applet != null) {
setApplet(applet); setApplet(applet);
}
} catch (NoSuchMethodException | InvocationTargetException | ClassNotFoundException | IllegalAccessException | NoSuchFieldException | InstantiationException e) {
e.printStackTrace();
} }
// try {
// Applet applet = Test.invokeZBU();
// if(applet != null) {
// setApplet(applet);
// }
// } catch (NoSuchMethodException | InvocationTargetException | ClassNotFoundException | IllegalAccessException | NoSuchFieldException | InstantiationException e) {
// e.printStackTrace();
// }
} }
/** /**