--- jsr166/src/test/tck/ThreadLocalTest.java 2014/12/31 19:05:43 1.15 +++ jsr166/src/test/tck/ThreadLocalTest.java 2014/12/31 20:29:13 1.16 @@ -90,7 +90,7 @@ public class ThreadLocalTest extends JSR */ public void testGenericITL() throws InterruptedException { final int threadCount = 10; - final int x[] = new int[threadCount]; + final int[] x = new int[threadCount]; Thread progenitor = new ITLThread(x); progenitor.start(); progenitor.join();