fixes bug#AL-2590

master
Gleison da Cruz 2023-05-25 13:06:56 -03:00
parent 293dc85180
commit 0adb223849
1 changed files with 1 additions and 1 deletions

View File

@ -1120,7 +1120,7 @@ public class Totalbus {
if (rs.next()) { if (rs.next()) {
Date rsDate = new SimpleDateFormat("dd/MM/yyyy").parse(rs.getString(1)); Date rsDate = new SimpleDateFormat("dd/MM/yyyy").parse(rs.getString(1));
result = !rsDate.after(data); result = !rsDate.after(data);
} else { // se n<EFBFBD>o existir a constante, retorno true para que ela seja criada na função updateDataBloqueio } else { // se não existir a constante, retorno true para que ela seja criada na função updateDataBloqueio
result = true; result = true;
} }
} catch (Exception e) { } catch (Exception e) {