ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166e/extra/ReadMostlyVector.java
(Generate patch)

Comparing jsr166/src/jsr166e/extra/ReadMostlyVector.java (file contents):
Revision 1.30 by jsr166, Fri Oct 12 16:27:47 2012 UTC vs.
Revision 1.33 by jsr166, Wed Jan 2 04:35:20 2013 UTC

# Line 14 | Line 14 | import java.util.*;
14   * throughput when invocations of read-only methods by multiple
15   * threads are most common.
16   *
17 < * <p> The iterators returned by this class's {@link #iterator()
17 > * <p>The iterators returned by this class's {@link #iterator()
18   * iterator} and {@link #listIterator(int) listIterator} methods are
19   * best-effort in the presence of concurrent modifications, and do
20   * <em>NOT</em> throw {@link ConcurrentModificationException}.  An
# Line 93 | Line 93 | public class ReadMostlyVector<E>
93       * Creates an empty vector with the given initial capacity.
94       *
95       * @param initialCapacity the initial capacity of the underlying array
96     *
96       * @throws IllegalArgumentException if initial capacity is negative
97       */
98      public ReadMostlyVector(int initialCapacity) {
# Line 1248 | Line 1247 | public class ReadMostlyVector<E>
1247  
1248      static final class ReadMostlyVectorSublist<E>
1249              implements List<E>, RandomAccess, java.io.Serializable {
1250 <        static final long serialVersionUID = 3041673470172026059L;
1250 >        private static final long serialVersionUID = 3041673470172026059L;
1251  
1252          final ReadMostlyVector<E> list;
1253          final int offset;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines