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

Comparing jsr166/src/main/java/util/concurrent/DelayQueue.java (file contents):
Revision 1.17 by dl, Sun Oct 5 23:00:18 2003 UTC vs.
Revision 1.18 by dl, Sat Oct 11 15:37:31 2003 UTC

# Line 26 | Line 26 | public class DelayQueue<E extends Delaye
26      implements BlockingQueue<E> {
27  
28      private transient final ReentrantLock lock = new ReentrantLock();
29 <    private transient final Condition available = lock.newCondition();
29 >    private transient final ReentrantLock.ConditionObject available = lock.newCondition();
30      private final PriorityQueue<E> q = new PriorityQueue<E>();
31  
32      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines