-
Bug
-
Resolution: Fixed
-
P4
-
8
-
b112
-
Not verified
Unsafe typecast long to int:
@Override
default T[] asArray(IntFunction<T[]> generator) {
T[] boxed = generator.apply((int) count());
copyInto(boxed, 0);
return boxed;
}
long count();
It looks like default implementation is not used (class Node is package private).
@Override
default T[] asArray(IntFunction<T[]> generator) {
T[] boxed = generator.apply((int) count());
copyInto(boxed, 0);
return boxed;
}
long count();
It looks like default implementation is not used (class Node is package private).