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

* commit '18582a827c3f908cd75e1d9c189c554f42415a4a':
  Use Runtime.gc instead of System.gc for DDMS.
This commit is contained in:
Mathieu Chartier
2014-04-28 18:36:44 +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
}