We build for Java 1.5.

This commit is contained in:
EvilSeph 2012-04-23 23:05:57 -04:00
parent edfc8ba92f
commit e61a316815

View file

@ -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);
} }
} }