--- jsr166/src/test/tck/AtomicReferenceArrayTest.java 2009/12/01 09:56:28 1.17 +++ jsr166/src/test/tck/AtomicReferenceArrayTest.java 2011/05/27 19:39:07 1.20 @@ -1,7 +1,7 @@ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at - * http://creativecommons.org/licenses/publicdomain + * http://creativecommons.org/publicdomain/zero/1.0/ * Other contributors include Andrew Wright, Jeffrey Hayes, * Pat Fisher, Mike Judd. */ @@ -12,8 +12,8 @@ import java.io.*; import java.util.*; public class AtomicReferenceArrayTest extends JSR166TestCase { - public static void main (String[] args) { - junit.textui.TestRunner.run (suite()); + public static void main(String[] args) { + junit.textui.TestRunner.run(suite()); } public static Test suite() { return new TestSuite(AtomicReferenceArrayTest.class); @@ -51,7 +51,6 @@ public class AtomicReferenceArrayTest ex assertEquals(a[i], ai.get(i)); } - /** * get and set for out of bound indices throw IndexOutOfBoundsException */ @@ -198,7 +197,6 @@ public class AtomicReferenceArrayTest ex } } - /** * toString returns current value. */