ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166x/LinkedBlockingDeque.java
(Generate patch)

Comparing jsr166/src/jsr166x/LinkedBlockingDeque.java (file contents):
Revision 1.14 by jsr166, Wed Jan 16 00:51:11 2013 UTC vs.
Revision 1.15 by jsr166, Tue Feb 5 17:34:19 2013 UTC

# Line 113 | Line 113 | public class LinkedBlockingDeque<E>
113      // Basic linking and unlinking operations, called only while holding lock
114  
115      /**
116 <     * Link e as first element, or return false if full
116 >     * Links e as first element, or returns false if full.
117       */
118      private boolean linkFirst(E e) {
119          if (count >= capacity)
# Line 131 | Line 131 | public class LinkedBlockingDeque<E>
131      }
132  
133      /**
134 <     * Link e as last element, or return false if full
134 >     * Links e as last element, or returns false if full.
135       */
136      private boolean linkLast(E e) {
137          if (count >= capacity)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines