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.48 by jsr166, Mon Feb 18 01:30:23 2013 UTC vs.
Revision 1.49 by jsr166, Mon Feb 18 03:10:15 2013 UTC

# Line 863 | Line 863 | public class ArrayDeque<E> extends Abstr
863          private int fence;  // -1 until first use
864          private int index;  // current index, modified on traverse/split
865  
866 <        /** Create new spliterator covering the given array and range */
866 >        /** Creates new spliterator covering the given array and range */
867          DeqSpliterator(ArrayDeque<E> deq, int origin, int fence) {
868              this.deq = deq;
869              this.index = origin;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines