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

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

am b385e0b4: Merge "Telephony: Initialize GsmCellLocation class members properly"

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

    /**