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