From 954a2905b057267c6f6c694034972809727ecfbb Mon Sep 17 00:00:00 2001 From: gmungoc Date: Mon, 22 Aug 2016 16:21:38 +0100 Subject: [PATCH] JAL-1448 corrected for backwards compatibility for UK locale users --- src/jalview/bin/Cache.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jalview/bin/Cache.java b/src/jalview/bin/Cache.java index 76fdb69..df71ccc 100755 --- a/src/jalview/bin/Cache.java +++ b/src/jalview/bin/Cache.java @@ -244,8 +244,8 @@ public class Cache * even if the user changes their locale setting */ private static final DateFormat date_format = SimpleDateFormat - .getDateTimeInstance(SimpleDateFormat.LONG, - SimpleDateFormat.LONG, Locale.UK); + .getDateTimeInstance(SimpleDateFormat.MEDIUM, + SimpleDateFormat.MEDIUM, Locale.UK); /** * Initialises the Jalview Application Log -- 1.7.10.2