mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
We build for Java 1.5.
This commit is contained in:
parent
edfc8ba92f
commit
e61a316815
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ public class UnsafeList<E> extends AbstractList<E> implements List<E>, RandomAcc
|
|||
int old = data.length;
|
||||
int rounded = Integer.highestOneBit(size - 1) << 1;
|
||||
if (rounded < old) {
|
||||
data = Arrays.copyOf(data, rounded);
|
||||
data = Java15Compat.Arrays_copyOf(data, rounded);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue