--- jsr166/src/test/tck/ThreadPoolExecutorTest.java 2009/11/18 16:13:11 1.28 +++ jsr166/src/test/tck/ThreadPoolExecutorTest.java 2009/11/20 16:02:10 1.29 @@ -1042,9 +1042,11 @@ public class ThreadPoolExecutorTest exte ExecutorService e = new ThreadPoolExecutor(2, 2, LONG_DELAY_MS, MILLISECONDS, new ArrayBlockingQueue(10)); try { ArrayList> l = new ArrayList>(); - l.add(new CheckedCallable() { - public String realCall() throws InterruptedException { - latch.await(); + l.add(new Callable() { + public String call() { + try { + latch.await(); + } catch (InterruptedException ok) {} return TEST_STRING; }}); l.add(null);