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.46 by jsr166, Sun Jun 19 23:13:42 2005 UTC vs.
Revision 1.47 by jsr166, Mon Jul 18 00:29:28 2005 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines