Browse Source

JAVA: Remove trailing spaces introduced by r656.

Review URL: https://codereview.appspot.com/95550043
pull/567/head
Shaopeng Jia 12 years ago
committed by Mihaela Rosca
parent
commit
d1d5fa4b69
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java

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

@ -59,7 +59,7 @@ public class PhoneNumberUtil {
// @VisibleForTesting
static final MetadataLoader DEFAULT_METADATA_LOADER = new MetadataLoader() {
public InputStream loadMetadata(String metadataFileName) {
return PhoneNumberUtil.class.getResourceAsStream(metadataFileName);
return PhoneNumberUtil.class.getResourceAsStream(metadataFileName);
}
};
@ -76,7 +76,7 @@ public class PhoneNumberUtil {
// We don't allow input strings for parsing to be longer than 250 chars. This prevents malicious
// input from overflowing the regular-expression engine.
private static final int MAX_INPUT_STRING_LENGTH = 250;
private static final String META_DATA_FILE_PREFIX =
"/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto";


Loading…
Cancel
Save