We build for Java 1.5.
This commit is contained in:
parent
edfc8ba92f
commit
e61a316815
@ -107,7 +107,7 @@ public class UnsafeList<E> extends AbstractList<E> implements List<E>, RandomAcc
|
|||||||
int old = data.length;
|
int old = data.length;
|
||||||
int rounded = Integer.highestOneBit(size - 1) << 1;
|
int rounded = Integer.highestOneBit(size - 1) << 1;
|
||||||
if (rounded < old) {
|
if (rounded < old) {
|
||||||
data = Arrays.copyOf(data, rounded);
|
data = Java15Compat.Arrays_copyOf(data, rounded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user