summaryrefslogtreecommitdiff
path: root/java/tests
diff options
context:
space:
mode:
authorpjain <pjain@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-11-26 21:17:27 +0000
committerpjain <pjain@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-11-26 21:17:27 +0000
commitf97bb9de2ac0bef53045507a69d82352ace4198e (patch)
treed82550418805ea42679758bb8d331c83a125d35f /java/tests
parent216ad0211bf0563c270b258ebd7e1972b0b53cd4 (diff)
downloadATCD-f97bb9de2ac0bef53045507a69d82352ace4198e.tar.gz
Made a small change in accordancw with the change to TimerQueue. We now
need to pass in an argument (a flag) at the creation time of TimerQueue indicating whether or not to create an internal thread.
Diffstat (limited to 'java/tests')
-rw-r--r--java/tests/Reactor/TimerQueueTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/tests/Reactor/TimerQueueTest.java b/java/tests/Reactor/TimerQueueTest.java
index d0a1ae5a2af..114125c25f9 100644
--- a/java/tests/Reactor/TimerQueueTest.java
+++ b/java/tests/Reactor/TimerQueueTest.java
@@ -26,7 +26,7 @@ public class TimerQueueTest implements EventHandler
public static void main (String args [])
{
- TimerQueue tq = new TimerQueue ();
+ TimerQueue tq = new TimerQueue (true);
TimerQueueTest th1 = new TimerQueueTest ();
int n = 5;