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

Commit 9ca712d6 authored by Amit Mahajan's avatar Amit Mahajan Committed by Android (Google) Code Review
Browse files

Merge "Promoting a function from Gsm/Cdma CellLocation classes to parent class"

parents dfabfea7 37c2839f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -80,6 +80,12 @@ public abstract class CellLocation {
     */
    public abstract boolean isEmpty();

    /**
     * Invalidate this object.  The location area code and the cell id are set to -1.
     * @hide
     */
    public abstract void setStateInvalid();

    /**
     * Return a new CellLocation object representing an unknown
     * location, or null for unknown/none phone radio types.
+2 −1
Original line number Diff line number Diff line
@@ -123,6 +123,7 @@ public class CdmaCellLocation extends CellLocation {
    /**
     * Invalidate this object.  The cell location data is set to invalid values.
     */
    @Override
    public void setStateInvalid() {
        this.mBaseStationId = -1;
        this.mBaseStationLatitude = INVALID_LAT_LONG;
+1 −0
Original line number Diff line number Diff line
@@ -72,6 +72,7 @@ public class GsmCellLocation extends CellLocation {
    /**
     * Invalidate this object.  The location area code and the cell id are set to -1.
     */
    @Override
    public void setStateInvalid() {
        mLac = -1;
        mCid = -1;