This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
libphonenumber
mirror of
https://github.com/google/libphonenumber
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
254
Wiki
Activity
Browse Source
Merge pull request
#691
from mihaelacr-google/master
Remove return from finally block.
pull/697/head
Shaopeng Jia
11 years ago
parent
f6acd03899
e34fe96374
commit
aebf754bc0
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
;
}
/
*
*
Write
Preview
Loading…
Cancel
Save