--- jsr166/src/jsr166x/ArrayDeque.java 2012/02/21 01:54:03 1.9 +++ jsr166/src/jsr166x/ArrayDeque.java 2012/12/29 23:55:19 1.10 @@ -88,7 +88,7 @@ public class ArrayDeque extends Abstr /** * Allocates empty array to hold the given number of elements. * - * @param numElements the number of elements to hold. + * @param numElements the number of elements to hold */ private void allocateElements(int numElements) { int initialCapacity = MIN_INITIAL_CAPACITY; @@ -555,9 +555,9 @@ public class ArrayDeque extends Abstr } /** - * Returns true if this collection contains no elements.

+ * Returns true if this collection contains no elements. * - * @return true if this collection contains no elements. + * @return true if this collection contains no elements */ public boolean isEmpty() { return head == tail;