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

Commit 16c0cf0d authored by Scott Kennedy's avatar Scott Kennedy Committed by Android Git Automerger
Browse files

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

* commit 'b1b6efd0':
  Specify the size of the Map in the constructor
parents 7987082e b1b6efd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();