Browse Source

Fix the return in the finally block in PhoneNumberUtil.java

pull/691/head
Mihaela Rosca 11 years ago
parent
commit
5dee6a4d61
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java

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

@ -664,10 +664,9 @@ public class PhoneNumberUtil {
source.close();
} catch (IOException e) {
logger.log(Level.WARNING, "error closing input stream (ignored)", e);
} finally {
return metadataCollection;
}
}
return metadataCollection;
}
/**


Loading…
Cancel
Save