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.62 by jsr166, Tue May 22 15:51:31 2018 UTC vs.
Revision 1.64 by jsr166, Mon Oct 1 00:10:52 2018 UTC

# Line 92 | Line 92 | import jdk.internal.misc.SharedSecrets;
92   * should be used only to detect bugs.</i>
93   *
94   * <p>This class is a member of the
95 < * <a href="{@docRoot}/java/util/package-summary.html#CollectionsFramework">
95 > * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
96   * Java Collections Framework</a>.
97   *
98   * @param <E> the type of elements in this list
# 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        modCount++;
1740      }
1741  
1742      private void replaceAllRange(UnaryOperator<E> operator, int i, int end) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines