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

* commit '0cd623bb9f832194cdd9c08625fa32583e947c76':
  Use Runtime.gc instead of System.gc for DDMS.
This commit is contained in:
Mathieu Chartier
2014-04-28 18:13:07 +00:00
committed by Android Git Automerger

View File

@ -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
}