summaryrefslogtreecommitdiff
path: root/sources/core/VSTaskManager.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-19 09:34:17 +0000
committerPaul Buetow <paul@buetow.org>2008-05-19 09:34:17 +0000
commit5eb35a6da1ba939878c0351f35b4019fd406ffdd (patch)
treed74636167291a21b5694eee3fd5f5564d1075424 /sources/core/VSTaskManager.java
parent6dec65db5dceaf8636a98f5bd51c31e20922ecdd (diff)
TaskManager bugfix.
Diffstat (limited to 'sources/core/VSTaskManager.java')
-rw-r--r--sources/core/VSTaskManager.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/sources/core/VSTaskManager.java b/sources/core/VSTaskManager.java
index 1857865..e5adfac 100644
--- a/sources/core/VSTaskManager.java
+++ b/sources/core/VSTaskManager.java
@@ -22,7 +22,7 @@ public class VSTaskManager {
this.fullfilledProgrammedTasks = new LinkedList<VSTask>();
}
- /*
+ /*
private Comparator<VSTask> createComparator() {
return new Comparator<VSTask>() {
public int compare(VSTask a, VSTask b) {
@@ -36,7 +36,7 @@ public class VSTaskManager {
}
};
}
- */
+ */
public synchronized void runTasks(final long step, final long offset, final long lastGlobalTime) {
VSTask task = null;
@@ -184,10 +184,10 @@ public class VSTaskManager {
}
private void insert(VSTask task) {
- if (task.timeOver())
- fullfilledProgrammedTasks.addLast(task);
+ if (task.timeOver())
+ fullfilledProgrammedTasks.addLast(task);
- else if (task.isGlobalTimed())
+ else if (task.isGlobalTimed())
globalTasks.add(task);
else
@@ -216,7 +216,7 @@ public class VSTaskManager {
return false;
}
- /*
+ /*
public synchronized LinkedList<VSTask> getProtocolTasks(VSProtocol protocol) {
LinkedList<VSTask> protocolTasks = new LinkedList<VSTask>();
@@ -278,7 +278,7 @@ public class VSTaskManager {
insert(task);
}
}
-*/
+ */
public synchronized VSPriorityQueue<VSTask> getLocalTasks() {
VSPriorityQueue<VSTask> processTasks = new VSPriorityQueue<VSTask>();