Loading src/java/com/android/internal/telephony/GsmCdmaCallTracker.java +2 −2 Original line number Diff line number Diff line Loading @@ -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(); } } Loading Loading
src/java/com/android/internal/telephony/GsmCdmaCallTracker.java +2 −2 Original line number Diff line number Diff line Loading @@ -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(); } } Loading