--- jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java 2015/09/28 03:05:23 1.42 +++ jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java 2015/09/28 08:23:49 1.43 @@ -711,7 +711,7 @@ public class ThreadPoolExecutorSubclassT new CustomTPE(poolSize, poolSize, LONG_DELAY_MS, MILLISECONDS, new ArrayBlockingQueue(10)); CountDownLatch threadsStarted = new CountDownLatch(poolSize); - CheckedRunnable waiter = new CheckedRunnable() { public void realRun() { + Runnable waiter = new CheckedRunnable() { public void realRun() { threadsStarted.countDown(); try { MILLISECONDS.sleep(2 * LONG_DELAY_MS);