Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6d0dc89 authored by Mathieu Chartier's avatar Mathieu Chartier Committed by Android Git Automerger
Browse files

am 18582a82: am 0cd623bb: Merge "Use Runtime.gc instead of System.gc for DDMS."

* commit '18582a82':
  Use Runtime.gc instead of System.gc for DDMS.
parents c79963c3 18582a82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ public class DdmHandleHeap extends ChunkHandler {

        if (false)
            Log.d("ddm-heap", "Heap GC request");
        System.gc();
        Runtime.getRuntime().gc();

        return null;        // empty response
    }