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

Comparing jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java (file contents):
Revision 1.127 by jsr166, Tue Feb 17 18:55:39 2015 UTC vs.
Revision 1.128 by jsr166, Sun Feb 22 05:08:16 2015 UTC

# Line 1047 | Line 1047 | public class CopyOnWriteArrayList<E>
1047          /** Index of element to be returned by subsequent call to next.  */
1048          private int cursor;
1049  
1050 <        private COWIterator(Object[] elements, int initialCursor) {
1050 >        COWIterator(Object[] elements, int initialCursor) {
1051              cursor = initialCursor;
1052              snapshot = elements;
1053          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines