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.26 by dl, Sun Oct 5 23:00:18 2003 UTC vs.
Revision 1.27 by dl, Sat Oct 11 15:37:31 2003 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines