ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ExecutorCompletionServiceTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ExecutorCompletionServiceTest.java (file contents):
Revision 1.25 by jsr166, Mon May 23 18:19:48 2016 UTC vs.
Revision 1.26 by jsr166, Mon May 23 18:29:31 2016 UTC

# Line 144 | Line 144 | public class ExecutorCompletionServiceTe
144      public void testPollReturnsNull()
145          throws InterruptedException, ExecutionException {
146          CompletionService cs = new ExecutorCompletionService(cachedThreadPool);
147 <        CountDownLatch proceed = new CountDownLatch(1);
147 >        final CountDownLatch proceed = new CountDownLatch(1);
148          cs.submit(new Callable() { public String call() throws Exception {
149              proceed.await();
150              return TEST_STRING;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines