Skip to content

Commit

Permalink
fix: 혼잡도응답 dto 순서 수정 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
be-student authored Aug 3, 2023
1 parent 601b5fe commit 618826e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public StatisticsResponse calculateCongestion(StatisticsRequest statisticsReques
Map<String, List<CongestionInfoResponse>> quickSpeedResponse = calculateQuick(congestions, chargers);
Map<String, List<CongestionInfoResponse>> standardSpeedResponse = calculateStandard(congestions, chargers);

return new StatisticsResponse(stationId, new CongestionResponse(quickSpeedResponse, standardSpeedResponse));
return new StatisticsResponse(stationId, new CongestionResponse(standardSpeedResponse, quickSpeedResponse));
}

private Map<String, List<CongestionInfoResponse>> calculateQuick(List<PeriodicCongestion> congestions, List<Charger> chargers) {
Expand Down

0 comments on commit 618826e

Please sign in to comment.