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"; } }