Skip to content

Commit

Permalink
chore(CoLeadersRedisDto): 기본 생성자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Dec 12, 2024
1 parent 7228013 commit 0d28402
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.sopt.makers.crew.main.meeting.v2.dto.redis;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
Expand All @@ -18,7 +19,7 @@ public class CoLeadersRedisDto {
private final Map<Integer, List<CoLeaderRedisDto>> coLeadersMap;

public CoLeadersRedisDto() {
this.coLeadersMap = null; // 기본 값으로 설정하거나 필요시 초기화
this.coLeadersMap = new HashMap<>(); // 기본 값으로 설정하거나 필요시 초기화
}

public CoLeadersRedisDto(List<CoLeader> coLeaders) {
Expand Down

0 comments on commit 0d28402

Please sign in to comment.