Just catch everything that could go wrong

This commit is contained in:
Martin Fietz 2015-10-29 11:01:42 +01:00
parent c9986edc5e
commit 1a6f237258
1 changed files with 7 additions and 3 deletions

View File

@ -88,9 +88,13 @@ public class DateUtils {
for(String pattern : patterns) {
parser.applyPattern(pattern);
pos.setIndex(0);
Date result = parser.parse(date, pos);
if(result != null && pos.getIndex() == date.length()) {
return result;
try {
Date result = parser.parse(date, pos);
if (result != null && pos.getIndex() == date.length()) {
return result;
}
} catch(Exception e) {
Log.e(TAG, Log.getStackTraceString(e));
}
}