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.136 by jsr166, Wed Dec 31 07:54:13 2014 UTC vs.
Revision 1.137 by jsr166, Sun Jan 4 01:06:15 2015 UTC

# Line 2331 | Line 2331 | public class CompletableFuture<T> implem
2331              STACK = u.objectFieldOffset(k.getDeclaredField("stack"));
2332              NEXT = u.objectFieldOffset
2333                  (Completion.class.getDeclaredField("next"));
2334 <        } catch (Exception x) {
2335 <            throw new Error(x);
2334 >        } catch (ReflectiveOperationException e) {
2335 >            throw new Error(e);
2336          }
2337      }
2338   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines