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.85 by jsr166, Tue Oct 25 20:29:12 2011 UTC vs.
Revision 1.86 by jsr166, Tue Oct 25 20:45:17 2011 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      void removeRange(int fromIndex, int toIndex) {
534          final ReentrantLock lock = this.lock;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines