Skip to content

Commit c1bb292

Browse files
authored
Merge pull request #500 from TaskFlow-CLAP/CLAP-385
CLAP-385 기간별 작업 요청량, 완료 작업량 주간, 월간 정렬 순서 이상한 오류 수정
2 parents ac356ef + 77502e4 commit c1bb292

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/clap/server/domain/policy/task/TaskStatisticsPolicy.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import java.util.LinkedHashMap;
88
import java.util.Map;
99
import java.util.Map.Entry;
10-
import java.util.TreeMap;
1110
import java.util.stream.Collectors;
1211

1312
@Policy
@@ -20,7 +19,7 @@ public Map<String, Long> formatStatistics(Map<String, Long> statistics) {
2019
entry -> formatDate(entry.getKey()),
2120
Entry::getValue,
2221
(v1, v2) -> v1,
23-
TreeMap::new
22+
LinkedHashMap::new
2423
));
2524
}
2625

0 commit comments

Comments
 (0)