Loading src/java/com/android/internal/telephony/cdma/CDMALTEPhone.java +2 −2 Original line number Diff line number Diff line Loading @@ -218,11 +218,11 @@ public class CDMALTEPhone extends CDMAPhone { @Override public boolean updateCurrentCarrierInProvider() { if (mSimRecords != null) { if (mIccRecords.get() != null) { try { Uri uri = Uri.withAppendedPath(Telephony.Carriers.CONTENT_URI, "current"); ContentValues map = new ContentValues(); String operatorNumeric = mSimRecords.getOperatorNumeric(); String operatorNumeric = mIccRecords.get().getOperatorNumeric(); map.put(Telephony.Carriers.NUMERIC, operatorNumeric); if (DBG) log("updateCurrentCarrierInProvider from UICC: numeric=" + operatorNumeric); Loading Loading
src/java/com/android/internal/telephony/cdma/CDMALTEPhone.java +2 −2 Original line number Diff line number Diff line Loading @@ -218,11 +218,11 @@ public class CDMALTEPhone extends CDMAPhone { @Override public boolean updateCurrentCarrierInProvider() { if (mSimRecords != null) { if (mIccRecords.get() != null) { try { Uri uri = Uri.withAppendedPath(Telephony.Carriers.CONTENT_URI, "current"); ContentValues map = new ContentValues(); String operatorNumeric = mSimRecords.getOperatorNumeric(); String operatorNumeric = mIccRecords.get().getOperatorNumeric(); map.put(Telephony.Carriers.NUMERIC, operatorNumeric); if (DBG) log("updateCurrentCarrierInProvider from UICC: numeric=" + operatorNumeric); Loading