> public static String dateFormat(Date date) {
> - return date != null ? DATE_FORMAT.format(date) : "";
> + return date != null ? new SimpleDateFormat("dd/MM/yyyy HH:mm:ss
> zzz").format(date) : "";
Fine to leave as-is - was just a curiosity question. We're not mutating it, but
it doesn't explicitly say that concurrent calls to `format` are thread-safe, so
let's just stick with the change.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/71/files#r17205434