remove double thread crap (make mac happy), fix full screen for mrj, auto-updater code

This commit is contained in:
benfry
2001-08-01 01:45:07 +00:00
parent 1fdab94b5d
commit fa78ede52b
4 changed files with 255 additions and 7 deletions

View File

@@ -34,6 +34,8 @@ public class PdeRunner implements Runnable {
public void start() {
run();
/*
if (thread != null) {
try {
thread.stop();
@@ -42,6 +44,7 @@ public class PdeRunner implements Runnable {
}
thread = new Thread(this, "PdeRunner");
thread.start();
*/
}
@@ -138,10 +141,12 @@ public class PdeRunner implements Runnable {
public void stop() {
if (engine != null) {
engine.stop();
/*
if (forceStop) {
thread.stop();
thread = null;
}
*/
engine = null;
}
}