ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ScheduledExecutorTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ScheduledExecutorTest.java (file contents):
Revision 1.47 by jsr166, Tue Sep 24 18:35:21 2013 UTC vs.
Revision 1.48 by jsr166, Wed Sep 25 06:59:34 2013 UTC

# Line 148 | Line 148 | public class ScheduledExecutorTest exten
148                  final CountDownLatch done = new CountDownLatch(cycles);
149                  CheckedRunnable task = new CheckedRunnable() {
150                      public void realRun() { done.countDown(); }};
151                
151                  ScheduledFuture h =
152                      p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS);
153                  done.await();
# Line 177 | Line 176 | public class ScheduledExecutorTest exten
176                  final CountDownLatch done = new CountDownLatch(cycles);
177                  CheckedRunnable task = new CheckedRunnable() {
178                      public void realRun() { done.countDown(); }};
180                
179                  ScheduledFuture h =
180                      p.scheduleWithFixedDelay(task, 0, delay, MILLISECONDS);
181                  done.await();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines