--- jsr166/src/test/tck/AtomicLongArrayTest.java 2014/12/31 19:21:20 1.29 +++ jsr166/src/test/tck/AtomicLongArrayTest.java 2015/02/22 04:34:44 1.30 @@ -35,7 +35,7 @@ public class AtomicLongArrayTest extends public void testConstructor2NPE() { try { long[] a = null; - AtomicLongArray aa = new AtomicLongArray(a); + new AtomicLongArray(a); shouldThrow(); } catch (NullPointerException success) {} }