[CLEANUP] Commented out testing parts

This commit is contained in:
JKetelaar
2016-01-10 00:00:14 +01:00
parent d475ac9e45
commit 5a7f7a20a4
2 changed files with 35 additions and 27 deletions
+27 -27
View File
@@ -217,34 +217,34 @@ public class Context {
gameApplet.init();
gameApplet.start();
if (false) { // Should be deleted on push
// try {
try {
Test.initiate();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
Applet get = (Applet) Context.getInstance().getClient();
// get.getName();
panel.removeAll();
setClientInstance(get);
gameApplet = get;
gameApplet.setSize(appletSize);
panel.add(gameApplet);
panel.validate();
// } catch (NoSuchMethodException e) {
// e.printStackTrace();
// } catch (InvocationTargetException e) {
// e.printStackTrace();
// } catch (IllegalAccessException e) {
// e.printStackTrace();
// if (false) { // Should be deleted on push
//// try {
// try {
// Test.initiate();
// } catch (NoSuchMethodException e) {
// e.printStackTrace();
// } catch (InvocationTargetException e) {
// e.printStackTrace();
// } catch (IllegalAccessException e) {
// e.printStackTrace();
// }
// Applet get = (Applet) Context.getInstance().getClient();
//// get.getName();
// panel.removeAll();
// setClientInstance(get);
// gameApplet = get;
// gameApplet.setSize(appletSize);
// panel.add(gameApplet);
// panel.validate();
//
//// } catch (NoSuchMethodException e) {
//// e.printStackTrace();
//// } catch (InvocationTargetException e) {
//// e.printStackTrace();
//// } catch (IllegalAccessException e) {
//// e.printStackTrace();
//// }
// }
}
java.util.Timer t = new java.util.Timer();
t.schedule(new TimerTask() {
@@ -0,0 +1,8 @@
package org.parabot.core.asm.redirect;
/**
* @author JKetelaar
*/
public class URLRedirect{
}