summaryrefslogtreecommitdiff
path: root/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-04-28 15:58:06 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-04-28 15:58:06 +0000
commit2a01c78d372b3eb5c276af8666522186763d1cde (patch)
tree218fff2d6b52e65c893f789d653f1e631e041f80 /repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
parent219fe038593350a7d07bfd60a1e434793e5cd439 (diff)
parent16bb0e7854acc5a6821bedc81651cfa579c15b5f (diff)
downloadlibphonenumber-2a01c78d372b3eb5c276af8666522186763d1cde.tar.gz
Snap for 8512216 from 16bb0e7854acc5a6821bedc81651cfa579c15b5f to tm-frc-art-releaset_frc_art_330443060android13-frc-art-release
Change-Id: I456e67f468a260c2fcc17632e402d7037916b446
Diffstat (limited to 'repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java')
-rw-r--r--repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java b/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
index 5432f670..cca8a0b8 100644
--- a/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
+++ b/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
@@ -30,9 +30,9 @@ import java.util.Set;
public class AlternateFormatsCountryCodeSet {
// A set of all country codes for which data is available.
static Set<Integer> getCountryCodeSet() {
- // The capacity is set to 62 as there are 47 different entries,
+ // The capacity is set to 61 as there are 46 different entries,
// and this offers a load factor of roughly 0.75.
- Set<Integer> countryCodeSet = new HashSet<Integer>(62);
+ Set<Integer> countryCodeSet = new HashSet<Integer>(61);
countryCodeSet.add(7);
countryCodeSet.add(27);
@@ -50,7 +50,6 @@ public class AlternateFormatsCountryCodeSet {
countryCodeSet.add(58);
countryCodeSet.add(61);
countryCodeSet.add(62);
- countryCodeSet.add(63);
countryCodeSet.add(64);
countryCodeSet.add(66);
countryCodeSet.add(81);