From 508f700c65d0826066b79fa483966c4c5413ba4d Mon Sep 17 00:00:00 2001 From: changelogweb Date: Sat, 7 Mar 2020 23:13:45 +0000 Subject: [PATCH] fixes bug#18600 dev:lucas qua:junia git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@100566 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/web/utilerias/MyDateFormatInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/rjconsultores/ventaboletos/web/utilerias/MyDateFormatInfo.java b/src/java/com/rjconsultores/ventaboletos/web/utilerias/MyDateFormatInfo.java index 83a63b26d..ba75cd21c 100644 --- a/src/java/com/rjconsultores/ventaboletos/web/utilerias/MyDateFormatInfo.java +++ b/src/java/com/rjconsultores/ventaboletos/web/utilerias/MyDateFormatInfo.java @@ -25,12 +25,12 @@ public class MyDateFormatInfo implements DateFormatInfo { @Override public String getTimeFormat(int style, Locale locale) { - return "hh24:mm"; + return "HH:mm"; } @Override public String getDateTimeFormat(int dateStyle, int timeStyle, Locale locale) { - return "dd/MM/yyyy hh24:mm"; + return "dd/MM/yyyy HH:mm"; } }