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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java (file contents):
Revision 1.180 by jsr166, Sun Jan 7 23:11:06 2018 UTC vs.
Revision 1.181 by jsr166, Sun Mar 11 18:00:05 2018 UTC

# Line 3383 | Line 3383 | public class ConcurrentSkipListMap<K,V>
3383              VAL = l.findVarHandle(Node.class, "val", Object.class);
3384              RIGHT = l.findVarHandle(Index.class, "right", Index.class);
3385          } catch (ReflectiveOperationException e) {
3386 <            throw new Error(e);
3386 >            throw new ExceptionInInitializerError(e);
3387          }
3388      }
3389   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines