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

Comparing jsr166/src/jdk8/java/util/concurrent/CompletableFuture.java (file contents):
Revision 1.4 by dl, Tue Apr 5 22:53:24 2016 UTC vs.
Revision 1.5 by dl, Fri Apr 8 10:36:45 2016 UTC

# Line 1721 | Line 1721 | public class CompletableFuture<T> implem
1721  
1722          public final Void getRawResult() { return null; }
1723          public final void setRawResult(Void v) {}
1724 <        public final boolean exec() { run(); return true; }
1724 >        public final boolean exec() { run(); return false; }
1725  
1726          public void run() {
1727              CompletableFuture<T> d; Supplier<? extends T> f;
# Line 1757 | Line 1757 | public class CompletableFuture<T> implem
1757  
1758          public final Void getRawResult() { return null; }
1759          public final void setRawResult(Void v) {}
1760 <        public final boolean exec() { run(); return true; }
1760 >        public final boolean exec() { run(); return false; }
1761  
1762          public void run() {
1763              CompletableFuture<Void> d; Runnable f;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines