Skip to content

Commit

Permalink
style: record 코드 컨벤션 설정 #208
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Aug 20, 2024
1 parent fe405a1 commit 74f35d1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
import ddangkong.domain.room.member.Member;
import java.util.List;

public record GiveUpVoteMemberResponse(List<String> members, int memberCount) {
public record GiveUpVoteMemberResponse(
List<String> members,
int memberCount) {

public static GiveUpVoteMemberResponse create(List<Member> giveUpMembers) {
List<String> members = giveUpMembers.stream()
Expand Down

0 comments on commit 74f35d1

Please sign in to comment.