Browse Source

null safe

pull/779/head
Wolter Eldering 10 years ago
parent
commit
020b410ffe
  1. 3
      openid-connect-server/src/main/java/org/mitre/openid/connect/service/impl/MITREidDataServiceSupport.java

3
openid-connect-server/src/main/java/org/mitre/openid/connect/service/impl/MITREidDataServiceSupport.java

@ -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) {

Loading…
Cancel
Save