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.51 by jsr166, Tue Oct 6 05:03:23 2015 UTC vs.
Revision 1.52 by jsr166, Tue Oct 6 05:12:16 2015 UTC

# Line 610 | Line 610 | public class ScheduledExecutorSubclassTe
610                  Runnable r = new CheckedRunnable() {
611                      public void realRun() throws InterruptedException {
612                          threadStarted.countDown();
613 <                        done.await();
613 >                        await(done);
614                      }};
615                  tasks[i] = p.schedule(r, 1, MILLISECONDS);
616              }
# Line 635 | Line 635 | public class ScheduledExecutorSubclassTe
635                  Runnable r = new CheckedRunnable() {
636                      public void realRun() throws InterruptedException {
637                          threadStarted.countDown();
638 <                        done.await();
638 >                        await(done);
639                      }};
640                  tasks[i] = p.schedule(r, 1, MILLISECONDS);
641              }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines