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

# Line 36 | Line 36 | public class PriorityBlockingQueue<E> ex
36  
37      private final PriorityQueue<E> q;
38      private final ReentrantLock lock = new ReentrantLock(true);
39 <    private final ReentrantLock.ConditionObject notEmpty = lock.newCondition();
39 >    private final Condition notEmpty = lock.newCondition();
40  
41      /**
42       * Creates a <tt>PriorityBlockingQueue</tt> with the default initial

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines