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.111 by jsr166, Wed Mar 4 00:22:30 2015 UTC vs.
Revision 1.112 by jsr166, Sun Sep 20 17:03:23 2015 UTC

# Line 132 | Line 132 | public class PriorityBlockingQueue<E> ex
132      private transient Comparator<? super E> comparator;
133  
134      /**
135 <     * Lock used for all public operations
135 >     * Lock used for all public operations.
136       */
137      private final ReentrantLock lock;
138  
139      /**
140 <     * Condition for blocking when empty
140 >     * Condition for blocking when empty.
141       */
142      private final Condition notEmpty;
143  
# Line 642 | Line 642 | public class PriorityBlockingQueue<E> ex
642      }
643  
644      /**
645 <     * Identity-based version for use in Itr.remove
645 >     * Identity-based version for use in Itr.remove.
646       */
647      void removeEQ(Object o) {
648          final ReentrantLock lock = this.lock;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines