fixed statics bug
[org.ibex.core.git] / src / org / ibex / Scheduler.java
index 46b076a..358a0f7 100644 (file)
@@ -60,7 +60,6 @@ public class Scheduler {
     protected static Queue runnable = new Queue(50);
     public void defaultRun() {
         while(true) {
-            System.out.println("enter");
             current = (Task)runnable.remove(true);
             try {
                 // FIXME hideous
@@ -89,7 +88,6 @@ public class Scheduler {
                 t.printStackTrace();
             }
             // if an Error is thrown it will cause the engine to quit
-            System.out.println("leave");
         }
     }
 }