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

Commit 37c2839f authored by Amit Mahajan's avatar Amit Mahajan
Browse files

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

Bug: 25793157
Change-Id: Iee247ceb45df90aeba26c0b68471ef857284b245
parent b6350870
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;