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

Comparing jsr166/src/main/java/util/concurrent/PriorityBlockingQueue.java (file contents):
Revision 1.145 by jsr166, Fri Jul 24 20:57:26 2020 UTC vs.
Revision 1.146 by dl, Fri Nov 27 17:42:00 2020 UTC

# Line 58 | Line 58 | import jdk.internal.util.ArraysSupport;
58   * <pre> {@code
59   * class FIFOEntry<E extends Comparable<? super E>>
60   *     implements Comparable<FIFOEntry<E>> {
61 < *   static final AtomicLong seq = new AtomicLong(0);
61 > *   static final AtomicLong seq = new AtomicLong();
62   *   final long seqNum;
63   *   final E entry;
64   *   public FIFOEntry(E entry) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines