null safe

pull/779/head
Wolter Eldering 2015-03-08 15:47:58 +01:00
parent db2574ab53
commit 020b410ffe
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,9 @@ public abstract class MITREidDataServiceSupport {
}
protected Date utcToDate(String value) {
if (value == null) {
return null;
}
try {
return dateFormatter.parse(value, Locale.ENGLISH);
} catch (ParseException ex) {