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

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

# Line 200 | Line 200 | public class ScheduledExecutorSubclassTe
200                  final CountDownLatch done = new CountDownLatch(cycles);
201                  CheckedRunnable task = new CheckedRunnable() {
202                      public void realRun() { done.countDown(); }};
203                
203                  ScheduledFuture h =
204                      p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS);
205                  done.await();
# Line 229 | Line 228 | public class ScheduledExecutorSubclassTe
228                  final CountDownLatch done = new CountDownLatch(cycles);
229                  CheckedRunnable task = new CheckedRunnable() {
230                      public void realRun() { done.countDown(); }};
232                
231                  ScheduledFuture h =
232                      p.scheduleWithFixedDelay(task, 0, delay, MILLISECONDS);
233                  done.await();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines