|
@@ -977,7 +977,7 @@ public class DateUtil {
|
|
|
while (!currentDate.after(endTime)) {
|
|
|
String dateString = DateUtil.format(currentDate,DATE_FORMAT_MIN);
|
|
|
dates.add(dateString);
|
|
|
- currentDate = DateUtil.addMonths(currentDate,1);
|
|
|
+ currentDate = DateUtil.addDays(currentDate,1);
|
|
|
}
|
|
|
return dates;
|
|
|
}
|