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

Comparing jsr166/src/main/java/util/concurrent/LinkedTransferQueue.java (file contents):
Revision 1.159 by jsr166, Sun Jan 7 16:37:50 2018 UTC vs.
Revision 1.160 by jsr166, Sun Mar 11 18:00:06 2018 UTC

# Line 1710 | Line 1710 | public class LinkedTransferQueue<E> exte
1710              NEXT = l.findVarHandle(Node.class, "next", Node.class);
1711              WAITER = l.findVarHandle(Node.class, "waiter", Thread.class);
1712          } catch (ReflectiveOperationException e) {
1713 <            throw new Error(e);
1713 >            throw new ExceptionInInitializerError(e);
1714          }
1715  
1716          // Reduce the risk of rare disastrous classloading in first call to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines