--- jsr166/src/test/tck/ReentrantLockTest.java 2003/09/25 11:02:41 1.7 +++ jsr166/src/test/tck/ReentrantLockTest.java 2003/09/26 15:33:13 1.8 @@ -69,7 +69,7 @@ public class ReentrantLockTest extends J } - /* + /** * locking an unlocked lock succeeds */ public void testLock() { @@ -79,7 +79,7 @@ public class ReentrantLockTest extends J rl.unlock(); } - /* + /** * locking an unlocked fair lock succeeds */ public void testFairLock() { @@ -89,7 +89,7 @@ public class ReentrantLockTest extends J rl.unlock(); } - /* + /** * Unlocking an unlocked lock throws IllegalMonitorStateException */ public void testUnlock_IllegalMonitorStateException() { @@ -101,7 +101,7 @@ public class ReentrantLockTest extends J } catch(IllegalMonitorStateException success){} } - /* + /** * trylock on an unlocked lock succeeds */ public void testTryLock() { @@ -112,7 +112,7 @@ public class ReentrantLockTest extends J } - /* + /** * getQueueLength reports number of waiting threads */ public void testGetQueueLength() { @@ -141,7 +141,7 @@ public class ReentrantLockTest extends J } } - /* + /** * getQueuedThreads includes waiting threads */ public void testGetQueuedThreads() { @@ -174,7 +174,7 @@ public class ReentrantLockTest extends J } - /* + /** * timed trylock is interruptible. */ public void testInterruptedException2() { @@ -290,7 +290,7 @@ public class ReentrantLockTest extends J } - /* + /** * lockInterruptibly is interruptible. */ public void testLockInterruptibly1() {