ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/ArrayList.java
(Generate patch)

Comparing jsr166/src/main/java/util/ArrayList.java (file contents):
Revision 1.65 by jsr166, Sun Nov 11 16:27:28 2018 UTC vs.
Revision 1.66 by jsr166, Thu May 2 14:31:30 2019 UTC

# Line 1737 | Line 1737 | public class ArrayList<E> extends Abstra
1737      @Override
1738      public void replaceAll(UnaryOperator<E> operator) {
1739          replaceAllRange(operator, 0, size);
1740 +        // TODO(8203662): remove increment of modCount from ...
1741 +        modCount++;
1742      }
1743  
1744      private void replaceAllRange(UnaryOperator<E> operator, int i, int end) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines