--- jsr166/src/test/tck/AtomicReferenceArrayTest.java 2011/06/10 19:26:10 1.22 +++ jsr166/src/test/tck/AtomicReferenceArrayTest.java 2011/06/10 19:45:01 1.23 @@ -43,7 +43,7 @@ public class AtomicReferenceArrayTest ex * constructor with array is of same size and has all elements */ public void testConstructor2() { - Integer[] a = { two, one, three, four, seven}; + Integer[] a = { two, one, three, four, seven }; AtomicReferenceArray ai = new AtomicReferenceArray(a); assertEquals(a.length, ai.length()); for (int i = 0; i < a.length; ++i) @@ -208,7 +208,7 @@ public class AtomicReferenceArrayTest ex * toString returns current value. */ public void testToString() { - Integer[] a = { two, one, three, four, seven}; + Integer[] a = { two, one, three, four, seven }; AtomicReferenceArray ai = new AtomicReferenceArray(a); assertEquals(Arrays.toString(a), ai.toString()); }