ItEr49S10CUVisualizacionResponsabilidadesTRaballoNaPlanificacionItEr48S10: Removing unused method

This commit is contained in:
Óscar González Fernández 2010-02-28 17:00:28 +01:00
parent 4ac73904f5
commit a0ca371743

View file

@ -874,14 +874,4 @@ public class BaseCalendar extends BaseEntity implements IWorkHours {
return last.getEndDate();
}
private List<CalendarException> getExceptionsFrom(LocalDate start) {
List<CalendarException> result = new ArrayList<CalendarException>();
for (CalendarException each : exceptions) {
if (each.getDate().compareTo(start) >= 0) {
result.add(each);
}
}
return result;
}
}