This commit is contained in:
M66B 2019-09-23 17:25:31 +02:00
parent 3c7bd7876a
commit 9a348f1145
1 changed files with 0 additions and 8 deletions

View File

@ -850,14 +850,6 @@ public class Helper {
return result;
}
static long[] toLongArray(Set<Long> set) {
long[] result = new long[set.size()];
int i = 0;
for (Long value : set)
result[i++] = value;
return result;
}
static List<Long> fromLongArray(long[] array) {
List<Long> result = new ArrayList<>();
for (int i = 0; i < array.length; i++)