I have a comparison that checks if the current time is after the configured time.
LocalTime horaConfig = new LocalTime(6, 00, 00);
LocalTime horaAtual = new LocalTime(20, 00, 00);
horaAtual.isAfter(horaConfig);
My problem is that since the...
asked by
12.09.2014 / 19:16