diff options
| author | 2009-07-13 16:24:55 -0700 | |
|---|---|---|
| committer | 2009-07-13 16:24:55 -0700 | |
| commit | 2a71ee7129a7a346a4f1fb9d63b82bc06b9120d5 (patch) | |
| tree | f0238064a9b340349fa4f0dc93cd22ab8efcc68c | |
| parent | 0f4e1ab773d4d52bfb85a9ad2f050ead3b8b4e49 (diff) | |
| parent | 019581bf6055eb69ee7e4cb844dafe2b6c23597e (diff) | |
Merge change 7007
* changes:
Update name getCdmaMIN to getCdmaMin
| -rwxr-xr-x | telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java b/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java index f6fe9c4ac46e..0918a8c1437a 100755 --- a/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java +++ b/telephony/java/com/android/internal/telephony/cdma/CDMAPhone.java @@ -67,7 +67,7 @@ public class CDMAPhone extends PhoneBase { private static final boolean LOCAL_DEBUG = true; // Default Emergency Callback Mode exit timer - private static final int DEFAULT_ECM_EXIT_TIMER_VALUE = 30000; + private static final int DEFAULT_ECM_EXIT_TIMER_VALUE = 300000; static final String VM_COUNT_CDMA = "vm_count_key_cdma"; private static final String VM_NUMBER_CDMA = "vm_number_key_cdma"; private String mVmNumber = null; @@ -395,7 +395,7 @@ public class CDMAPhone extends PhoneBase { return mSST.getPrlVersion(); } - public String getCdmaMIN() { + public String getCdmaMin() { return mSST.getCdmaMin(); } @@ -429,8 +429,8 @@ public class CDMAPhone extends PhoneBase { public String getSubscriberId() { // Subscriber ID is the combination of MCC+MNC+MIN as CDMA IMSI // TODO(Moto): Replace with call to mRuimRecords.getIMSI_M() when implemented. - if ((getServiceState().getOperatorNumeric() != null) && (getCdmaMIN() != null)) { - return (getServiceState().getOperatorNumeric() + getCdmaMIN()); + if ((getServiceState().getOperatorNumeric() != null) && (getCdmaMin() != null)) { + return (getServiceState().getOperatorNumeric() + getCdmaMin()); } else { return null; } |