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

Commit 0d2f2fb0 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

am 0994d12b: am d38218d8: am b385e0b4: Merge "Telephony: Initialize...

am 0994d12b: am d38218d8: am b385e0b4: Merge "Telephony: Initialize GsmCellLocation class members properly"

* commit '0994d12b':
  Telephony: Initialize GsmCellLocation class members properly
parents 02cab444 0994d12b
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -40,9 +40,9 @@ public class GsmCellLocation extends CellLocation {
     * Initialize the object from a bundle.
     * Initialize the object from a bundle.
     */
     */
    public GsmCellLocation(Bundle bundle) {
    public GsmCellLocation(Bundle bundle) {
        mLac = bundle.getInt("lac", mLac);
        mLac = bundle.getInt("lac", -1);
        mCid = bundle.getInt("cid", mCid);
        mCid = bundle.getInt("cid", -1);
        mPsc = bundle.getInt("psc", mPsc);
        mPsc = bundle.getInt("psc", -1);
    }
    }


    /**
    /**