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.82 by jsr166, Thu Apr 4 08:48:27 2013 UTC vs.
Revision 1.83 by dl, Thu Apr 4 18:52:03 2013 UTC

# Line 2820 | Line 2820 | public class CompletableFuture<T> implem
2820                      } catch (Throwable rex) {
2821                          ex = rex;
2822                      }
2823                    if (dst == null)
2824                        dst = new CompletableFuture<U>();
2823                  }
2824              }
2825 +            if (dst == null)
2826 +                dst = new CompletableFuture<U>();
2827              if (e == null && ex != null)
2828                  dst.internalComplete(null, ex);
2829          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines