File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/main/java/de/doubleslash/keeptime/view Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -108,10 +108,11 @@ private void initialize() {
108108 colorTimeLine = new ColorTimeLine (colorTimeLineCanvas );
109109 }
110110
111- private void updateReport (final LocalDate newvalue ) {
111+ private void updateReport (final LocalDate dateToShow ) {
112112 reportRoot .requestFocus ();
113- this .currentDayLabel .setText (DateFormatter .toDayDateString (newvalue ));
114- final List <Work > currentWorkItems = model .getWorkRepository ().findByCreationDate (newvalue );
113+
114+ this .currentDayLabel .setText (DateFormatter .toDayDateString (dateToShow ));
115+ final List <Work > currentWorkItems = model .getWorkRepository ().findByCreationDate (dateToShow );
115116
116117 colorTimeLine .update (currentWorkItems , controller .calcSeconds (currentWorkItems ));
117118
You can’t perform that action at this time.
0 commit comments