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

Comparing jsr166/src/main/java/util/concurrent/Phaser.java (file contents):
Revision 1.93 by jsr166, Wed Apr 19 23:45:51 2017 UTC vs.
Revision 1.94 by jsr166, Sun Mar 11 18:00:06 2018 UTC

# Line 1108 | Line 1108 | public class Phaser {
1108              MethodHandles.Lookup l = MethodHandles.lookup();
1109              STATE = l.findVarHandle(Phaser.class, "state", long.class);
1110          } catch (ReflectiveOperationException e) {
1111 <            throw new Error(e);
1111 >            throw new ExceptionInInitializerError(e);
1112          }
1113  
1114          // Reduce the risk of rare disastrous classloading in first call to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines