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.192 by dl, Thu Jun 2 13:16:27 2016 UTC vs.
Revision 1.193 by jsr166, Thu Jun 2 13:40:42 2016 UTC

# Line 2842 | Line 2842 | public class CompletableFuture<T> implem
2842      }
2843  
2844      // VarHandle mechanics
2845 <    private static final VarHandle RESULT;
2845 >    private static final VarHandle RESULT;
2846      private static final VarHandle STACK;
2847      private static final VarHandle NEXT;
2848      static {
2849          try {
2850              MethodHandles.Lookup l = MethodHandles.lookup();
2851 <            RESULT = l.findVarHandle(CompletableFuture.class, "result", Object.class);
2851 >            RESULT = l.findVarHandle(CompletableFuture.class, "result", Object.class);
2852              STACK = l.findVarHandle(CompletableFuture.class, "stack", Completion.class);
2853              NEXT = l.findVarHandle(Completion.class, "next", Completion.class);
2854          } catch (ReflectiveOperationException e) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines