2003/10/29 00:53:07
[org.ibex.core.git] / src / org / xwt / ThreadMessage.java
index cfd6cb7..0eeefef 100644 (file)
@@ -17,8 +17,6 @@ import org.xwt.js.*;
  */
 public class ThreadMessage extends Thread implements Message {
 
-    public static boolean fakeBackground = false;
-    
     private volatile static int threadcount = 0;
 
     /** the JavaScript function that we are executing */
@@ -55,7 +53,6 @@ public class ThreadMessage extends Thread implements Message {
 
     /** attempts to put this thread into the background to perform a blocking operation; returns false if unable to do so */
     public static boolean suspendThread() {
-        if (fakeBackground) return true;
         // put ourselves in the background
         Thread thread = Thread.currentThread();
         if (!(thread instanceof ThreadMessage)) {
@@ -70,7 +67,6 @@ public class ThreadMessage extends Thread implements Message {
 
     /** re-enqueues this thread */
     public static void resumeThread() {
-        if (fakeBackground) return;
         ThreadMessage mythread = (ThreadMessage)Thread.currentThread();
         Message.Q.add(mythread);
         mythread.setPriority(Thread.NORM_PRIORITY);