--- jsr166/src/jsr166x/LinkedBlockingDeque.java 2012/11/18 18:03:10 1.11 +++ jsr166/src/jsr166x/LinkedBlockingDeque.java 2012/12/29 23:55:19 1.13 @@ -444,7 +444,7 @@ public class LinkedBlockingDeque /** * Returns the number of elements in this deque. * - * @return the number of elements in this deque. + * @return the number of elements in this deque */ public int size() { lock.lock(); @@ -647,7 +647,7 @@ public class LinkedBlockingDeque * construction of the iterator, and may (but is not guaranteed to) * reflect any modifications subsequent to construction. * - * @return an iterator over the elements in this deque in proper sequence. + * @return an iterator over the elements in this deque in proper sequence */ public Iterator iterator() { return new Itr(); @@ -664,7 +664,7 @@ public class LinkedBlockingDeque * an element exists in hasNext(), we must return item read * under lock (in advance()) even if it was in the process of * being removed when hasNext() was called. - **/ + */ private E nextItem; /**