ArrayList.java (addAll(int,Collection)): System.arraycopy all of the remaining elements.
authorMark Wielaard <mark@klomp.org>
Sun, 7 Apr 2002 07:40:49 +0000 (07:40 +0000)
committerMark Wielaard <mark@gcc.gnu.org>
Sun, 7 Apr 2002 07:40:49 +0000 (07:40 +0000)
commit236fc6a041778bf19cff62c6bc65706c4fa4b5a8
treeefc2dd6dee0958f9f023d37fda7c28d454cb8596
parent0154eaa8122a7a848fd40a79d30d3835508e2ab6
ArrayList.java (addAll(int,Collection)): System.arraycopy all of the remaining elements.

        * java/util/ArrayList.java (addAll(int,Collection)): System.arraycopy
        all of the remaining elements.
        * java/util/Vector.java (addAll(int,Collection)): Likewise.
        (removeRange): If toIndex == fromIndex do
        nothing, if toIndex < fromIndex throw IndexOutIfBoundsException.
        (removeAll): Always throw NullPointerException when collection is
        null.
        (retrainAll): Likewise.

From-SVN: r51979
libjava/ChangeLog
libjava/java/util/ArrayList.java
libjava/java/util/Vector.java