--- jsr166/src/test/tck/ThreadLocalRandomTest.java 2011/03/15 19:47:07 1.8 +++ jsr166/src/test/tck/ThreadLocalRandomTest.java 2011/05/27 19:44:03 1.9 @@ -7,7 +7,6 @@ import junit.framework.*; import java.util.concurrent.*; import java.util.*; - public class ThreadLocalRandomTest extends JSR166TestCase { public static void main(String[] args) { @@ -67,7 +66,6 @@ public class ThreadLocalRandomTest exten assertTrue(i < NCALLS); } - /** * Repeated calls to nextBoolean produce at least one different result */ @@ -112,7 +110,6 @@ public class ThreadLocalRandomTest exten assertTrue(i < NCALLS); } - /** * nextInt(negative) throws IllegalArgumentException; */ @@ -133,7 +130,6 @@ public class ThreadLocalRandomTest exten } catch (IllegalArgumentException success) {} } - /** * nextInt(bound) returns 0 <= value < bound; * repeated calls produce at least one different result @@ -154,7 +150,6 @@ public class ThreadLocalRandomTest exten } } - /** * nextInt(least, bound) returns least <= value < bound; * repeated calls produce at least one different result @@ -236,7 +231,6 @@ public class ThreadLocalRandomTest exten } } - /** * nextDouble(least, bound) returns least <= value < bound; * repeated calls produce at least one different result @@ -258,5 +252,4 @@ public class ThreadLocalRandomTest exten } } - }