--- jsr166/src/test/tck/CompletableFutureTest.java 2013/03/31 18:16:35 1.12 +++ jsr166/src/test/tck/CompletableFutureTest.java 2013/03/31 18:17:18 1.13 @@ -2393,9 +2393,6 @@ public class CompletableFutureTest exten CompletableFuture f = new CompletableFuture(); CompletableFuture g = new CompletableFuture(); CompletableFuture h; - Runnable[] actions = { - () => f.thenApply(null), - } try { h = f.thenApply(null); } catch (NullPointerException ok) {} try { h = f.thenAccept(null); } catch (NullPointerException ok) {} try { h = f.thenRun(null); } catch (NullPointerException ok) {}