Skip to content

Commit

Permalink
[FIX] 빌더 메서드 순서 정리 #148
Browse files Browse the repository at this point in the history
  • Loading branch information
ddongseop committed Apr 30, 2024
1 parent 477b0e6 commit d56651c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ public static MyUserInfoResponseDto of(User myUser, User opponentUser, Parentchi
.isMeChild(myUser.isMeChild())
.section(qnA.getQuestion().getSection().getValue())
.matchedDate(date) // 일수와 문답 수는 다를 수 있음
.qnaCnt(qnaCnt)
.isOpponentExit(false)
.qnaCnt(qnaCnt).build();
.build();
}

// 아직 매칭된 유저가 없는 경우
Expand Down

0 comments on commit d56651c

Please sign in to comment.