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

Comparing jsr166/src/test/tck/TimeUnitTest.java (file contents):
Revision 1.15 by jsr166, Tue Dec 1 09:48:12 2009 UTC vs.
Revision 1.18 by jsr166, Mon Nov 8 20:15:28 2010 UTC

# Line 333 | Line 333 | public class TimeUnitTest extends JSR166
333  
334  
335      /**
336 <     *  Timed wait without holding lock throws
337 <     *  IllegalMonitorStateException
336 >     * Timed wait without holding lock throws
337 >     * IllegalMonitorStateException
338       */
339      public void testTimedWait_IllegalMonitorException() throws Exception {
340          Thread t = new Thread(new CheckedRunnable() {
# Line 361 | Line 361 | public class TimeUnitTest extends JSR166
361                  Object o = new Object();
362  
363                  TimeUnit tu = TimeUnit.MILLISECONDS;
364 <                synchronized(o) {
364 >                synchronized (o) {
365                      tu.timedWait(o,MEDIUM_DELAY_MS);
366                  }
367              }});
# Line 384 | Line 384 | public class TimeUnitTest extends JSR166
384              public void realRun() throws InterruptedException {
385                  TimeUnit tu = TimeUnit.MILLISECONDS;
386                  tu.timedJoin(s, MEDIUM_DELAY_MS);
387 <            }});;
387 >            }});
388          s.start();
389          t.start();
390          Thread.sleep(SHORT_DELAY_MS);
# Line 395 | Line 395 | public class TimeUnitTest extends JSR166
395      }
396  
397      /**
398 <     *  timedSleep throws InterruptedException when interrupted
398 >     * timedSleep throws InterruptedException when interrupted
399       */
400      public void testTimedSleep() throws InterruptedException {
401          Thread t = new Thread(new CheckedInterruptedRunnable() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines