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

Commit 50dac9de authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Use instanceof check for CellLocation" am: 8102cd46 am: b045d5f4

am: 5d0e253b

Change-Id: Ib64dc4e1f152c7870594bb1ae4cb96d2cb57f8d0
parents 917afc11 5d0e253b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1532,9 +1532,9 @@ public class GsmCdmaCallTracker extends CallTracker {
                    CellLocation loc = mPhone.getCellLocation();
                    int cid = -1;
                    if (loc != null) {
                        if (isPhoneTypeGsm()) {
                        if (loc instanceof GsmCellLocation) {
                            cid = ((GsmCellLocation)loc).getCid();
                        } else {
                        } else if (loc instanceof CdmaCellLocation) {
                            cid = ((CdmaCellLocation)loc).getBaseStationId();
                        }
                    }