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

Comparing jsr166/src/jdk7/java/util/concurrent/LinkedBlockingQueue.java (file contents):
Revision 1.1 by dl, Sun Dec 16 20:55:16 2012 UTC vs.
Revision 1.2 by jsr166, Sun Dec 30 05:23:05 2012 UTC

# Line 187 | Line 187 | public class LinkedBlockingQueue<E> exte
187      }
188  
189      /**
190 <     * Lock to prevent both puts and takes.
190 >     * Locks to prevent both puts and takes.
191       */
192      void fullyLock() {
193          putLock.lock();
# Line 195 | Line 195 | public class LinkedBlockingQueue<E> exte
195      }
196  
197      /**
198 <     * Unlock to allow both puts and takes.
198 >     * Unlocks to allow both puts and takes.
199       */
200      void fullyUnlock() {
201          takeLock.unlock();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines