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.17 by jsr166, Sat Oct 9 19:30:35 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 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