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

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

Loading…
Cancel
Save