Use LocalDate instead of Date in LoadTimeLine.getIntervalFrom.
Changes the code introduced in commit:
1d0734a1ab
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
e03838776c
commit
41ca9de2b3
1 changed files with 3 additions and 10 deletions
|
|
@ -22,14 +22,13 @@
|
|||
package org.zkoss.ganttz.data.resourceload;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Calendar;
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.commons.collections.ComparatorUtils;
|
||||
import org.apache.commons.lang.Validate;
|
||||
import org.joda.time.LocalDate;
|
||||
import org.zkoss.ganttz.data.GanttDate;
|
||||
import org.zkoss.ganttz.util.Interval;
|
||||
|
||||
|
|
@ -155,18 +154,12 @@ public class LoadTimeLine {
|
|||
}
|
||||
}
|
||||
if (timeLines.isEmpty() || start == null || end == null) {
|
||||
return new Interval(new Date(), plusFiveYears(new Date()));
|
||||
LocalDate localDateNow = new LocalDate();
|
||||
return new Interval(localDateNow, localDateNow.plusYears(5));
|
||||
}
|
||||
return new Interval(start.toLocalDate(), end.asExclusiveEnd());
|
||||
}
|
||||
|
||||
private static Date plusFiveYears(Date date) {
|
||||
Calendar calendar = Calendar.getInstance();
|
||||
calendar.setTime(date);
|
||||
calendar.add(Calendar.YEAR, 5);
|
||||
return calendar.getTime();
|
||||
}
|
||||
|
||||
private static GanttDate max(GanttDate one, GanttDate other) {
|
||||
if (one == null) {
|
||||
return other;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue