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

Comparing jsr166/src/main/java/util/concurrent/ConcurrentLinkedQueue.java (file contents):
Revision 1.107 by jsr166, Wed Dec 31 09:37:20 2014 UTC vs.
Revision 1.108 by jsr166, Sun Jan 4 01:06:15 2015 UTC

# Line 899 | Line 899 | public class ConcurrentLinkedQueue<E> ex
899              k = Node.class;
900              ITEM = U.objectFieldOffset(k.getDeclaredField("item"));
901              NEXT = U.objectFieldOffset(k.getDeclaredField("next"));
902 <        } catch (Exception e) {
902 >        } catch (ReflectiveOperationException e) {
903              throw new Error(e);
904          }
905      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines