Disable gc

This commit is contained in:
M66B 2021-03-10 20:25:56 +01:00
parent db712cace2
commit f7c840cffc
1 changed files with 7 additions and 5 deletions

View File

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