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.56 by jsr166, Mon Sep 20 20:23:52 2010 UTC vs.
Revision 1.57 by jsr166, Mon Sep 27 16:35:07 2010 UTC

# Line 41 | Line 41 | import java.util.*;
41   *  <pre> {@code
42   * class FIFOEntry<E extends Comparable<? super E>>
43   *     implements Comparable<FIFOEntry<E>> {
44 < *   final static AtomicLong seq = new AtomicLong();
44 > *   final static AtomicLong seq = new AtomicLong(0);
45   *   final long seqNum;
46   *   final E entry;
47   *   public FIFOEntry(E entry) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines