[Bug #1175] Fix bug

Availability was not averaged for low zoom levels (month and
year). This caused the overload to not be shown.

FEA: ItEr75S04BugFixing
This commit is contained in:
Óscar González Fernández 2011-09-15 20:31:09 +02:00
parent 3c8e148d21
commit 5d7ff14bce

View file

@ -67,7 +67,7 @@ public abstract class StandardLoadChartFiller extends LoadChartFiller {
private SortedMap<LocalDate, EffortDuration> getCalendarMaximumAvailability(
ILoadChartData data) {
return data.getAvailability();
return groupAsNeededByZoom(data.getAvailability());
}
}