|
@@ -120,11 +120,7 @@ public class CommonUtil {
|
|
|
if (transDate != null) {
|
|
|
int dayNum = getLastDayNumOfMonth(transDate);
|
|
|
for (int monthDay = 1; monthDay <= dayNum; monthDay++) {
|
|
|
- Map<Integer, Long> liftStatusToNum = new HashMap<>();
|
|
|
- for (int liftStatus : CommonConstants.PlatformCalendarConstants.LIFT_STATUS_ARRAY) {
|
|
|
- liftStatusToNum.put(liftStatus, 0L);
|
|
|
- }
|
|
|
- dayToLiftStatusToNum.put(monthDay, liftStatusToNum);
|
|
|
+ dayToLiftStatusToNum.put(monthDay, new HashMap<>());
|
|
|
}
|
|
|
}
|
|
|
return dayToLiftStatusToNum;
|