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.60 by jsr166, Wed May 16 16:18:00 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 571 | Line 571 | public class ArrayList<E> extends Abstra
571          if (to > es.length) {
572              throw new ConcurrentModificationException();
573          }
574 <        var oit = other.iterator();
574 >        Iterator<?> oit = other.iterator();
575          for (; from < to; from++) {
576              if (!oit.hasNext() || !Objects.equals(es[from], oit.next())) {
577                  return false;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines