Fixed test mode (Issue 35): now uses server test mode state.

This commit is contained in:
magenoxx 2010-12-04 20:20:27 +00:00
parent 9306d94ad2
commit cb3e454002
2 changed files with 3 additions and 8 deletions

View file

@ -97,7 +97,6 @@ public class MageFrame extends javax.swing.JFrame {
private static Preferences prefs = Preferences.userNodeForPackage(MageFrame.class);
private JLabel title;
private Rectangle titleRectangle;
public final static String testModeArg = "-testMode=";
/**
* @return the session
@ -555,12 +554,6 @@ public class MageFrame extends javax.swing.JFrame {
splash.update();
}
for (String arg: args) {
if (arg.startsWith(testModeArg)) {
System.setProperty(testModeArg, "true");
}
}
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread t, Throwable e) {
logger.log(Level.SEVERE, null, e);