v0.7.5: fixed casting errors with sparsearray

This commit is contained in:
Evan Debenham
2019-09-12 11:46:57 -04:00
parent 19a0f25414
commit f0a44e8578
10 changed files with 10 additions and 14 deletions

View File

@@ -32,10 +32,6 @@ public class SparseArray<T> extends IntMap<T> {
return keys().toArray().toArray();
}
public T[] valueArray(){
return values().toArray().toArray();
}
public List<T> valueList() {
return Arrays.asList(values().toArray().toArray());
}