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