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.72 by jsr166, Wed Sep 30 21:05:33 2015 UTC vs.
Revision 1.73 by jsr166, Sun Oct 11 00:50:06 2015 UTC

# Line 883 | Line 883 | public class ArrayDeque<E> extends Abstr
883          private int fence;  // -1 until first use
884          private int index;  // current index, modified on traverse/split
885  
886 <        /** Creates new spliterator covering the given array and range */
886 >        /** Creates new spliterator covering the given array and range. */
887          DeqSpliterator(ArrayDeque<E> deq, int origin, int fence) {
888              this.deq = deq;
889              this.index = origin;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines