From 62280c72fd651b00dd5499f4c3b32f30be57ce0d Mon Sep 17 00:00:00 2001 From: Yorke Lee Date: Fri, 22 Nov 2013 18:24:59 -0800 Subject: Remove use of hidden TelephonyManager methods Bug: 6948882 Change-Id: Ibce04c24e64fdb33fba532c0f0e5dca3b11f1b6c --- src/com/android/dialer/SpecialCharSequenceMgr.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/com/android/dialer/SpecialCharSequenceMgr.java b/src/com/android/dialer/SpecialCharSequenceMgr.java index fdef263fb..f4f818afc 100644 --- a/src/com/android/dialer/SpecialCharSequenceMgr.java +++ b/src/com/android/dialer/SpecialCharSequenceMgr.java @@ -158,7 +158,7 @@ public class SpecialCharSequenceMgr { TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); if (telephonyManager == null - || !TelephonyCapabilities.supportsAdn(telephonyManager.getCurrentPhoneType())) { + || telephonyManager.getPhoneType() != TelephonyManager.PHONE_TYPE_GSM) { return false; } @@ -243,7 +243,7 @@ public class SpecialCharSequenceMgr { TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); if (telephonyManager != null && input.equals(MMI_IMEI_DISPLAY)) { - int phoneType = telephonyManager.getCurrentPhoneType(); + int phoneType = telephonyManager.getPhoneType(); if (phoneType == TelephonyManager.PHONE_TYPE_GSM) { showIMEIPanel(context, useSystemWindow, telephonyManager); return true; -- cgit v1.2.3