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.67 by jsr166, Sun May 18 23:47:56 2008 UTC vs.
Revision 1.68 by jsr166, Sat Oct 16 16:48:01 2010 UTC

# Line 970 | Line 970 | public class CopyOnWriteArrayList<E>
970      }
971  
972      private static class COWIterator<E> implements ListIterator<E> {
973 <        /** Snapshot of the array **/
973 >        /** Snapshot of the array */
974          private final Object[] snapshot;
975          /** Index of element to be returned by subsequent call to next.  */
976          private int cursor;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines