Browse Source

Correct mistakes in pull request

In this commit I have delete unnecessary code.
pull/3627/head
KarolJakubKrawiec 1 year ago
parent
commit
75c58a8141
2 changed files with 0 additions and 8 deletions
  1. +0
    -3
      cpp/src/phonenumbers/phonenumberutil.h
  2. +0
    -5
      cpp/test/phonenumbers/phonenumberutil_test.cc

+ 0
- 3
cpp/src/phonenumbers/phonenumberutil.h View File

@ -862,9 +862,6 @@ class PhoneNumberUtil : public Singleton<PhoneNumberUtil> {
const i18n::phonenumbers::PhoneMetadata* GetMetadataForRegion(
const string& region_code) const;
const i18n::phonenumbers::PhoneMetadata* GetMetadataForNonGeographicalRegion(
int country_calling_code) const;
const i18n::phonenumbers::PhoneMetadata* GetMetadataForNonGeographicalEntity(
int country_calling_code) const;


+ 0
- 5
cpp/test/phonenumbers/phonenumberutil_test.cc View File

@ -64,11 +64,6 @@ class PhoneNumberUtilTest : public testing::Test {
return phone_util_.GetMetadataForRegion(region_code);
}
const PhoneMetadata* GetMetadataForNonGeographicalRegion(
int country_code) const {
return phone_util_.GetMetadataForNonGeographicalEntity(country_code);
}
const PhoneMetadata* GetMetadataForNonGeographicalEntity(
int country_code) const {
return phone_util_.GetMetadataForNonGeographicalEntity(country_code);


Loading…
Cancel
Save