Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Finkbeiner2016-11-30 23:33:04 +0000
committerAndrew M. Finkbeiner2016-11-30 23:33:04 +0000
commitb250ede1761a518eb1df61886501c250bec7ca14 (patch)
tree08328b24d333d9075a64ec6429441fffa4fb1ad3
parente9e09df67f6c96bdc3c15aa69f59868f50940f1b (diff)
downloadorg.eclipse.osee-b250ede1761a518eb1df61886501c250bec7ca14.tar.gz
org.eclipse.osee-b250ede1761a518eb1df61886501c250bec7ca14.tar.xz
org.eclipse.osee-b250ede1761a518eb1df61886501c250bec7ca14.zip
bug: Set the timeout flag
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TimerControl.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TimerControl.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TimerControl.java
index 315b71f16a3..4f5eacdf601 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TimerControl.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TimerControl.java
@@ -67,6 +67,7 @@ public abstract class TimerControl implements ITimerControl {
@Override
public ICancelTimer setTimerFor(ITimeout objToNotify, int milliseconds) {
+ objToNotify.setTimeout(false);
OTETaskRegistration reg = scheduler.scheduleWithDelay(new NotifyAfterTimeout(objToNotify), milliseconds);
return new CancelTimerFromReg(reg);
}

Back to the top