Skip to content

Commit 301537d

Browse files
committed
vector
1 parent de66e5d commit 301537d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

MD/ArrayList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
public void add(int index, E element) {
7676
insertElementAt(element, index);
7777
}
78-
public synchronized void insertElementAt(E obj, int index) {
78+
public synchronized void insertElementAt(E obj, int index) {
7979
modCount++;
8080
if (index > elementCount) {
8181
throw new ArrayIndexOutOfBoundsException(index

0 commit comments

Comments
 (0)