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.21 by dl, Tue Dec 23 19:38:09 2003 UTC vs.
Revision 1.22 by dl, Sat Dec 27 17:19:03 2003 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines