*** empty log message ***
[IRC.git] / Robust / src / ClassLibrary / JavaDSM / Task.java
index 355cc4cca5470a3c3f499b424ba4323e5497c0f2..a6b7f8bea19c2ab31f600eb9a8a2383d30e40f04 100644 (file)
@@ -1,6 +1,6 @@
 public class Task {
   Queue todoList;
-       Queue doneList;
+       DistributedHashMap doneList;
   Object myWork;
 
        Task() {}
@@ -25,6 +25,7 @@ public class Task {
                atomic {
                        o = todoList.pop();
                }
+//             System.out.println("Size of TodoList : " + todoList.size());
                return o;
        }