}
if (timeLines.isEmpty() || start == null || end == null) {
LocalDate localDateNow = new LocalDate();
return new Interval(localDateNow, localDateNow.plusYears(5));
}
return new Interval(start.toLocalDate(), end.asExclusiveEnd());
}
private static GanttDate max(GanttDate one, GanttDate other) {
if (one == null) {
return other;