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.49 by jsr166, Mon Jul 18 19:14:17 2005 UTC vs.
Revision 1.50 by jsr166, Thu Aug 25 03:16:10 2005 UTC

# Line 930 | Line 930 | public class CopyOnWriteArrayList<E>
930      /**
931       * {@inheritDoc}
932       *
933 <     * <p>The list iterator returned by this implementation will throw an
934 <     * <tt>UnsupportedOperationException</tt> in its <tt>remove</tt>,
935 <     * <tt>set</tt> and <tt>add</tt> methods.
933 >     * <p>The returned iterator provides a snapshot of the state of the list
934 >     * when the iterator was constructed. No synchronization is needed while
935 >     * traversing the iterator. The iterator does <em>NOT</em> support the
936 >     * <tt>remove</tt>, <tt>set</tt> or <tt>add</tt> methods.
937       *
938       * @throws IndexOutOfBoundsException {@inheritDoc}
939       */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines