> 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) : "";`DateFormat` is a mutable class. Unsure whether reducing this to private access would satisfy FindBugs. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/71/files#r17204465
