--- jsr166/src/test/tck/AtomicReferenceArrayTest.java 2014/12/31 19:21:20 1.30 +++ jsr166/src/test/tck/AtomicReferenceArrayTest.java 2015/02/22 04:34:44 1.31 @@ -36,7 +36,7 @@ public class AtomicReferenceArrayTest ex public void testConstructor2NPE() { try { Integer[] a = null; - AtomicReferenceArray aa = new AtomicReferenceArray(a); + new AtomicReferenceArray(a); shouldThrow(); } catch (NullPointerException success) {} }