summaryrefslogtreecommitdiffstats
path: root/telephony/java/android
diff options
context:
space:
mode:
authorDavid Brown <dab@google.com>2011-07-01 13:19:37 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-07-01 13:19:37 -0700
commit23b444a2e4e808262c22fa5254db9861eb961879 (patch)
tree5e26c66fc59d9406871c9a743e714206f0685333 /telephony/java/android
parent6bb0705d60f49f5ef1bac11f3ee979ab8c306dc7 (diff)
parentbc2e82d45432f7bd546d0fcc57e1ad1816ade9a3 (diff)
downloadframeworks_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.java3
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);
}