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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedDeque.java (file contents):
Revision 1.92 by jsr166, Sun Oct 22 23:18:30 2017 UTC vs.
Revision 1.93 by jsr166, Sun Mar 11 18:00:05 2018 UTC

# Line 1642 | Line 1642 | public class ConcurrentLinkedDeque<E>
1642              NEXT = l.findVarHandle(Node.class, "next", Node.class);
1643              ITEM = l.findVarHandle(Node.class, "item", Object.class);
1644          } catch (ReflectiveOperationException e) {
1645 <            throw new Error(e);
1645 >            throw new ExceptionInInitializerError(e);
1646          }
1647      }
1648   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines