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.68 by jsr166, Sat Oct 16 16:48:01 2010 UTC vs.
Revision 1.69 by jsr166, Sun Nov 21 08:18:19 2010 UTC

# Line 528 | Line 528 | public class CopyOnWriteArrayList<E>
528       * @param fromIndex index of first element to be removed
529       * @param toIndex index after last element to be removed
530       * @throws IndexOutOfBoundsException if fromIndex or toIndex out of range
531 <     *         (@code{fromIndex < 0 || toIndex > size() || toIndex < fromIndex})
531 >     *         ({@code{fromIndex < 0 || toIndex > size() || toIndex < fromIndex})
532       */
533      private void removeRange(int fromIndex, int toIndex) {
534          final ReentrantLock lock = this.lock;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines