1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 23:12:55 +00:00

Disable gc

This commit is contained in:
M66B 2021-03-10 20:25:56 +01:00
parent db712cace2
commit f7c840cffc

View file

@ -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);