You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.openid4java.util.InternetDateFormat extends SimpleDateFormat which is not
thread-safe.
An alternative would be to replace the use of InternetDateFormat with
commons-lang's org.apache.commons.lang3.time.FastDateFormat:
new InternetDateFormat()
->
FastDateFormat.getInstance("yyyy-MM-dd'T'HH:mm:ss'Z'",
TimeZone.getTimeZone("GMT"), Locale.US)
Original issue reported on code.google.com by [email protected] on 19 Dec 2013 at 1:19
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 19 Dec 2013 at 1:19The text was updated successfully, but these errors were encountered: