diff options
author | David Brown <dab@google.com> | 2011-07-01 13:19:37 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-07-01 13:19:37 -0700 |
commit | 23b444a2e4e808262c22fa5254db9861eb961879 (patch) | |
tree | 5e26c66fc59d9406871c9a743e714206f0685333 /telephony/java/android | |
parent | 6bb0705d60f49f5ef1bac11f3ee979ab8c306dc7 (diff) | |
parent | bc2e82d45432f7bd546d0fcc57e1ad1816ade9a3 (diff) | |
download | frameworks_base-23b444a2e4e808262c22fa5254db9861eb961879.zip frameworks_base-23b444a2e4e808262c22fa5254db9861eb961879.tar.gz frameworks_base-23b444a2e4e808262c22fa5254db9861eb961879.tar.bz2 |
Merge "Remove explicit toUpperCase after CountryDetector is fixed to return uppercase region code."
Diffstat (limited to 'telephony/java/android')
-rw-r--r-- | telephony/java/android/telephony/PhoneNumberFormattingTextWatcher.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/telephony/java/android/telephony/PhoneNumberFormattingTextWatcher.java b/telephony/java/android/telephony/PhoneNumberFormattingTextWatcher.java index dea67f3..ffabb7b 100644 --- a/telephony/java/android/telephony/PhoneNumberFormattingTextWatcher.java +++ b/telephony/java/android/telephony/PhoneNumberFormattingTextWatcher.java @@ -94,9 +94,6 @@ public class PhoneNumberFormattingTextWatcher implements TextWatcher { */ public PhoneNumberFormattingTextWatcher(String countryCode) { if (countryCode == null) throw new IllegalArgumentException(); - // TODO: remove this once CountryDetector.detectCountry().getCountryIso() is fixed to always - // return uppercase. Tracked at b/4941319. - countryCode = countryCode.toUpperCase(Locale.ENGLISH); mFormatter = PhoneNumberUtil.getInstance().getAsYouTypeFormatter(countryCode); } |