pull/194/head
M66B 4 years ago
parent db712cace2
commit f7c840cffc

@ -1672,6 +1672,7 @@ public class Helper {
// Miscellaneous
static void gc() {
if (BuildConfig.DEBUG) {
Runtime.getRuntime().gc();
try {
Thread.sleep(50);
@ -1679,6 +1680,7 @@ public class Helper {
e.printStackTrace();
}
}
}
static <T> List<List<T>> chunkList(List<T> list, int size) {
List<List<T>> result = new ArrayList<>(list.size() / size);

Loading…
Cancel
Save