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.63 by jsr166, Sun Mar 17 23:59:19 2013 UTC vs.
Revision 1.64 by jsr166, Mon Mar 18 00:04:07 2013 UTC

# Line 1214 | Line 1214 | public class CompletableFuture<T> implem
1214          final CompletableFuture<U> dst;
1215          HandleCompletion(CompletableFuture<? extends T> src,
1216                           BiFunction<? super T, Throwable, ? extends U> fn,
1217 <                         final CompletableFuture<U> dst) {
1217 >                         CompletableFuture<U> dst) {
1218              this.src = src; this.fn = fn; this.dst = dst;
1219          }
1220          public final void run() {
# Line 1255 | Line 1255 | public class CompletableFuture<T> implem
1255          final Executor executor;
1256          ComposeCompletion(CompletableFuture<? extends T> src,
1257                            Function<? super T, CompletableFuture<U>> fn,
1258 <                          final CompletableFuture<U> dst, Executor executor) {
1258 >                          CompletableFuture<U> dst, Executor executor) {
1259              this.src = src; this.fn = fn; this.dst = dst;
1260              this.executor = executor;
1261          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines