Browse Source

Remove white spaces.

pull/567/head
Shaopeng Jia 16 years ago
committed by Mihaela Rosca
parent
commit
7ce095f4fc
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      java/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java

+ 3
- 3
java/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java View File

@ -282,7 +282,7 @@ public class PhoneNumberUtil {
// A cache for frequently used regular expressions. // A cache for frequently used regular expressions.
private RegexCache regexCache = new RegexCache(50); private RegexCache regexCache = new RegexCache(50);
/** /**
* INTERNATIONAL and NATIONAL formats are consistent with the definition in ITU-T Recommendation * INTERNATIONAL and NATIONAL formats are consistent with the definition in ITU-T Recommendation
* E. 123. For example, the number of the Google Zurich office will be written as * E. 123. For example, the number of the Google Zurich office will be written as
@ -706,7 +706,7 @@ public Set<String> getSupportedCountries() {
formattedNumber.append(formatNationalNumber(nationalSignificantNumber, formattedNumber.append(formatNationalNumber(nationalSignificantNumber,
regionCode, numberFormat)); regionCode, numberFormat));
maybeGetFormattedExtension(number, regionCode, formattedNumber); maybeGetFormattedExtension(number, regionCode, formattedNumber);
formatNumberByFormat(countryCode, numberFormat, formattedNumber);
formatNumberByFormat(countryCode, numberFormat, formattedNumber);
} }
/** /**
@ -851,7 +851,7 @@ public Set<String> getSupportedCountries() {
PhoneNumberFormat.INTERNATIONAL, PhoneNumberFormat.INTERNATIONAL,
formattedNumber); formattedNumber);
} }
return formattedNumber.toString();
return formattedNumber.toString();
} }
/** /**


Loading…
Cancel
Save