Merge "Remove SIM operator name hack" into honeycomb-LTE

This commit is contained in:
Wink Saville
2011-05-17 20:35:35 -07:00
committed by Android (Google) Code Review

View File

@@ -496,11 +496,6 @@ public final class SIMRecords extends IccRecords {
return null; return null;
} }
// STOPSHIP: to be removed
if (BaseCommands.getLteOnCdmaModeStatic() == Phone.LTE_ON_CDMA_TRUE) {
Log.e(LOG_TAG, "getOperatorNumeric: STOPSHIP bad numeric operators in lte");
return SystemProperties.get("ro.cdma.home.operator.numeric", "310004");
}
// Length = length of MCC + length of MNC // Length = length of MCC + length of MNC
// length of mcc = 3 (TS 23.003 Section 2.2) // length of mcc = 3 (TS 23.003 Section 2.2)
return imsi.substring(0, 3 + mncLength); return imsi.substring(0, 3 + mncLength);