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

Comparing jsr166/src/jdk7/java/util/concurrent/CopyOnWriteArrayList.java (file contents):
Revision 1.8 by jsr166, Sun Jan 18 20:17:32 2015 UTC vs.
Revision 1.9 by jsr166, Sun Feb 22 05:08:16 2015 UTC

# Line 977 | Line 977 | public class CopyOnWriteArrayList<E>
977          /** Index of element to be returned by subsequent call to next.  */
978          private int cursor;
979  
980 <        private COWIterator(Object[] elements, int initialCursor) {
980 >        COWIterator(Object[] elements, int initialCursor) {
981              cursor = initialCursor;
982              snapshot = elements;
983          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines