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,11 +1672,13 @@ public class Helper {
// Miscellaneous // Miscellaneous
static void gc() { static void gc() {
Runtime.getRuntime().gc(); if (BuildConfig.DEBUG) {
try { Runtime.getRuntime().gc();
Thread.sleep(50); try {
} catch (InterruptedException e) { Thread.sleep(50);
e.printStackTrace(); } catch (InterruptedException e) {
e.printStackTrace();
}
} }
} }