am b1b6efd0: Merge "Specify the size of the Map in the constructor" into jb-mr2-dev

* commit 'b1b6efd0829f55c4331218bf67b34a89aeb7d87f':
  Specify the size of the Map in the constructor
This commit is contained in:
Scott Kennedy
2013-03-07 22:17:35 +00:00
committed by Android Git Automerger

View File

@@ -218,7 +218,7 @@ public final class Bundle implements Parcelable, Cloneable {
return;
}
if (mMap == null) {
mMap = new HashMap<String, Object>();
mMap = new HashMap<String, Object>(N);
}
mParcelledData.readMapInternal(mMap, N, mClassLoader);
mParcelledData.recycle();