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

Commit b1b6efd0 authored by Scott Kennedy's avatar Scott Kennedy Committed by Android (Google) Code Review
Browse files

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

parents 3afc18af 8ad7fbae
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();