Disable garbage collection

pull/215/head
Marcel Bokhorst 4 months ago committed by GitHub
parent b3b202339a
commit e434387e5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3737,6 +3737,8 @@ public class Helper {
// Miscellaneous
static void gc(String reason) {
if (!BuildConfig.DEBUG)
return;
try {
Log.i("GC " + reason);
Runtime.getRuntime().gc();

Loading…
Cancel
Save