Loading src/java/com/android/internal/telephony/LocaleTracker.java +6 −7 Original line number Diff line number Diff line Loading @@ -216,13 +216,11 @@ public class LocaleTracker extends Handler { */ public synchronized void updateOperatorNumericSync(String operatorNumeric) { // Check if the operator numeric changes. String msg = "updateOperatorNumeric. mcc/mnc=" + operatorNumeric; if (DBG) log("updateOperatorNumericSync. mcc/mnc=" + operatorNumeric); if (!Objects.equals(mOperatorNumeric, operatorNumeric)) { String msg = "Operator numeric changes to " + operatorNumeric; if (DBG) log(msg); mLocalLog.log(msg); if (!Objects.equals(mOperatorNumeric, operatorNumeric)) { if (DBG) { log("onUpdateOperatorNumeric: operator numeric changes to " + operatorNumeric); } mOperatorNumeric = operatorNumeric; // If the operator numeric becomes unavailable, we need to get the latest cell info so Loading Loading @@ -278,7 +276,8 @@ public class LocaleTracker extends Handler { private void getCellInfo() { String msg; if (!mPhone.getServiceStateTracker().getDesiredPowerState()) { msg = "Radio is off. No need to get cell info."; msg = "Radio is off. Skipped getting cell info. Cleared the previous cached cell info."; mCellInfo.clear(); if (DBG) log(msg); mLocalLog.log(msg); return; Loading Loading
src/java/com/android/internal/telephony/LocaleTracker.java +6 −7 Original line number Diff line number Diff line Loading @@ -216,13 +216,11 @@ public class LocaleTracker extends Handler { */ public synchronized void updateOperatorNumericSync(String operatorNumeric) { // Check if the operator numeric changes. String msg = "updateOperatorNumeric. mcc/mnc=" + operatorNumeric; if (DBG) log("updateOperatorNumericSync. mcc/mnc=" + operatorNumeric); if (!Objects.equals(mOperatorNumeric, operatorNumeric)) { String msg = "Operator numeric changes to " + operatorNumeric; if (DBG) log(msg); mLocalLog.log(msg); if (!Objects.equals(mOperatorNumeric, operatorNumeric)) { if (DBG) { log("onUpdateOperatorNumeric: operator numeric changes to " + operatorNumeric); } mOperatorNumeric = operatorNumeric; // If the operator numeric becomes unavailable, we need to get the latest cell info so Loading Loading @@ -278,7 +276,8 @@ public class LocaleTracker extends Handler { private void getCellInfo() { String msg; if (!mPhone.getServiceStateTracker().getDesiredPowerState()) { msg = "Radio is off. No need to get cell info."; msg = "Radio is off. Skipped getting cell info. Cleared the previous cached cell info."; mCellInfo.clear(); if (DBG) log(msg); mLocalLog.log(msg); return; Loading