summaryrefslogtreecommitdiff
path: root/libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
diff options
context:
space:
mode:
authorGrace Jia <xiaotonj@google.com>2022-03-30 12:20:56 -0700
committerGrace Jia <xiaotonj@google.com>2022-04-05 12:45:13 -0700
commit16bb0e7854acc5a6821bedc81651cfa579c15b5f (patch)
tree218fff2d6b52e65c893f789d653f1e631e041f80 /libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
parent219fe038593350a7d07bfd60a1e434793e5cd439 (diff)
downloadlibphonenumber-16bb0e7854acc5a6821bedc81651cfa579c15b5f.tar.gz
Test: CtsTelephonyTestCases:PhoneNumberUtilsTest Bug: 192062729 Signed-off-by: Grace Jia <xiaotonj@google.com> Change-Id: I6f16bb69fe9d15fa28acc762956b533d44d75b9d
Diffstat (limited to 'libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java')
-rw-r--r--libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java b/libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
index cdbd72d1..834c9d80 100644
--- a/libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
+++ b/libphonenumber/src/com/google/i18n/phonenumbers/AlternateFormatsCountryCodeSet.java
@@ -26,9 +26,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);
@@ -46,7 +46,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);