ItEr30S11CUVistaRecursosTempoEmpresaItEr29S13: Fixing problem in nextDay function that causes an infinite loop. Fixes Bug #52.
This commit is contained in:
parent
c696c7bb2d
commit
9bccccec3b
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ public abstract class LoadChartFiller implements ILoadChartFiller {
|
|||
|
||||
private LocalDate nextDay(LocalDate date) {
|
||||
if (zoomByDay()) {
|
||||
return date;
|
||||
return date.plusDays(1);
|
||||
} else {
|
||||
return date.plusWeeks(1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue