ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CompletableFuture.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CompletableFuture.java (file contents):
Revision 1.96 by dl, Wed Jul 24 15:25:27 2013 UTC vs.
Revision 1.97 by dl, Fri Aug 9 13:02:57 2013 UTC

# Line 391 | Line 391 | public class CompletableFuture<T> implem
391      }
392  
393      /** Base class can act as either FJ or plain Runnable */
394 +    @SuppressWarnings("serial")
395      abstract static class Async extends ForkJoinTask<Void>
396          implements Runnable, AsynchronousCompletionTask {
397          public final Void getRawResult() { return null; }
# Line 642 | Line 643 | public class CompletableFuture<T> implem
643      }
644  
645      // Opportunistically subclass AtomicInteger to use compareAndSet to claim.
646 +    @SuppressWarnings("serial")
647      abstract static class Completion extends AtomicInteger implements Runnable {
648      }
649  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines