Skip to content

Commit

Permalink
fix: addressed pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cka-y committed Mar 8, 2024
1 parent 2eb4bb8 commit 51686b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public ReportSummary(NoticeContainer container, VersionInfo versionInfo) {
.collect(
Collectors.groupingBy(
NoticeView::getSeverityLevel,
() -> new TreeMap<>(Comparator.comparingInt(SeverityLevel::getOrder)),
() -> new TreeMap<>(Comparator.reverseOrder()),
Collectors.groupingBy(NoticeView::getCode, TreeMap::new, Collectors.toList())));
this.versionInfo = versionInfo;
}
Expand Down

0 comments on commit 51686b8

Please sign in to comment.