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
master
changelogweb 2020-03-07 23:13:45 +00:00
parent 8b835a0704
commit 508f700c65
1 changed files with 2 additions and 2 deletions

View File

@ -25,12 +25,12 @@ public class MyDateFormatInfo implements DateFormatInfo {
@Override @Override
public String getTimeFormat(int style, Locale locale) { public String getTimeFormat(int style, Locale locale) {
return "hh24:mm"; return "HH:mm";
} }
@Override @Override
public String getDateTimeFormat(int dateStyle, int timeStyle, Locale locale) { public String getDateTimeFormat(int dateStyle, int timeStyle, Locale locale) {
return "dd/MM/yyyy hh24:mm"; return "dd/MM/yyyy HH:mm";
} }
} }