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.196 by jsr166, Sat Jun 4 19:51:49 2016 UTC vs.
Revision 1.197 by jsr166, Mon Jun 20 21:05:28 2016 UTC

# Line 1086 | Line 1086 | public class CompletableFuture<T> implem
1086          }
1087          final boolean isLive() {
1088              BiCompletion<?,?,?> c;
1089 <            return (c = base) != null && c.dep != null;
1089 >            return (c = base) != null
1090 >                // && c.isLive()
1091 >                && c.dep != null;
1092          }
1093      }
1094  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines