< prev index next >

src/java.base/share/classes/java/util/concurrent/PriorityBlockingQueue.java

Print this page
8197531: Miscellaneous changes imported from jsr166 CVS 2018-04
Reviewed-by: martin, psandoz

*** 1012,1020 **** MethodHandles.Lookup l = MethodHandles.lookup(); ALLOCATIONSPINLOCK = l.findVarHandle(PriorityBlockingQueue.class, "allocationSpinLock", int.class); } catch (ReflectiveOperationException e) { ! throw new Error(e); } } } --- 1012,1020 ---- MethodHandles.Lookup l = MethodHandles.lookup(); ALLOCATIONSPINLOCK = l.findVarHandle(PriorityBlockingQueue.class, "allocationSpinLock", int.class); } catch (ReflectiveOperationException e) { ! throw new ExceptionInInitializerError(e); } } }
< prev index next >