Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -321,10 +321,7 @@ public static int capacity(int current, int needed) {
}
}

@ExplodeLoop
public static void arraycopy(Object[] src, int srcPos, Object[] dest, int destPos, int length) {
for (int i = 0; i < length; i++) {
dest[destPos + i] = src[srcPos + i];
}
System.arraycopy(src, srcPos, dest, destPos, length);
}
}

0 comments on commit 8d06ce7

Please sign in to comment.