--- jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java 2015/10/04 07:23:20 1.82 +++ jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java 2015/10/05 20:45:41 1.83 @@ -756,7 +756,7 @@ public class ThreadPoolExecutorSubclassT new CustomTPE(poolSize, poolSize, LONG_DELAY_MS, MILLISECONDS, new ArrayBlockingQueue(10)); - CountDownLatch threadsStarted = new CountDownLatch(poolSize); + final CountDownLatch threadsStarted = new CountDownLatch(poolSize); Runnable waiter = new CheckedRunnable() { public void realRun() { threadsStarted.countDown(); try {