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.12 by jsr166, Sun Dec 30 02:21:42 2012 UTC vs.
Revision 1.13 by jsr166, Sun Dec 30 02:34:18 2012 UTC

# Line 575 | Line 575 | public class CompletableFuture<T> implem
575       * @return the new CompletableFuture
576       */
577      public <U> CompletableFuture<Void> thenAcceptAsync(CompletableFuture<? extends U> other,
578 <                                                   BiBlock<? super T, ? super U> block,
579 <                                                   Executor executor) {
578 >                                                       BiBlock<? super T, ? super U> block,
579 >                                                       Executor executor) {
580          if (executor == null) throw new NullPointerException();
581          return andBlock(other, block, executor);
582      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines