OSDN Git Service

Remove SIM operator name hack
authorKazuhiro Ondo <kazuhiro.ondo@motorola.com>
Tue, 17 May 2011 23:13:57 +0000 (18:13 -0500)
committerWink Saville <wink@google.com>
Wed, 18 May 2011 00:44:18 +0000 (17:44 -0700)
Change-Id: I28c6f94dd6c6bab3a3025f67013a39b3ea0fb0a1

telephony/java/com/android/internal/telephony/gsm/SIMRecords.java

index 27cde78..891c7cb 100755 (executable)
@@ -496,11 +496,6 @@ public final class SIMRecords extends IccRecords {
             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 of mcc = 3 (TS 23.003 Section 2.2)
         return imsi.substring(0, 3 + mncLength);