Merge "Use Runtime.gc instead of System.gc for DDMS."

This commit is contained in:
Mathieu Chartier
2014-04-28 18:10:41 +00:00
committed by Gerrit Code Review

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
}