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

Comparing jsr166/src/main/java/util/ArrayDeque.java (file contents):
Revision 1.3 by dl, Tue Mar 8 17:52:02 2005 UTC vs.
Revision 1.4 by dl, Tue Mar 8 19:07:39 2005 UTC

# Line 52 | Line 52 | public class ArrayDeque<E> extends Abstr
52                             implements Deque<E>, Cloneable, Serializable
53   {
54      /**
55 <     * The array in which the elements of in the deque are stored.
55 >     * The array in which the elements of the deque are stored.
56       * The capacity of the deque is the length of this array, which is
57       * always a power of two. The array is never allowed to become
58       * full, except transiently within an addX method where it is
# Line 147 | Line 147 | public class ArrayDeque<E> extends Abstr
147      }
148  
149      /**
150 <     * Constructs an empty array deque with the an initial capacity
150 >     * Constructs an empty array deque with an initial capacity
151       * sufficient to hold 16 elements.
152       */
153      public ArrayDeque() {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines