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

Commit 5d0e253b 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

Change-Id: Iaea78f4ed77394e5f83d9314c51f9140fcf05a4a
parents 3df75699 b045d5f4
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();
                        }
                    }