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

Comparing jsr166/src/main/java/util/Deque.java (file contents):
Revision 1.29 by jsr166, Sun Nov 23 18:46:47 2014 UTC vs.
Revision 1.31 by jsr166, Wed Dec 31 22:40:51 2014 UTC

# Line 159 | Line 159 | package java.util;
159   * @author Doug Lea
160   * @author Josh Bloch
161   * @since  1.6
162 < * @param <E> the type of elements held in this collection
162 > * @param <E> the type of elements held in this deque
163   */
164   public interface Deque<E> extends Queue<E> {
165      /**
# Line 524 | Line 524 | public interface Deque<E> extends Queue<
524       *
525       * @return the number of elements in this deque
526       */
527 <    public int size();
527 >    int size();
528  
529      /**
530       * Returns an iterator over the elements in this deque in proper sequence.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines