Skip to content

Commit

Permalink
refactor: 리뷰 상세보기에서 가이드라인 관련 필드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
donghoony committed Aug 12, 2024
1 parent c2b75de commit ed00105
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ private QuestionAnswerResponse getTextAnswerResponse(Question2 question, TextAns
question.isRequired(),
question.getQuestionType(),
question.getContent(),
question.hasGuideline(),
question.getGuideline(),
null,
textAnswer.getContent()
);
Expand Down Expand Up @@ -120,8 +118,6 @@ private QuestionAnswerResponse getCheckboxAnswerResponse(Review2 review, Questio
question.isRequired(),
question.getQuestionType(),
question.getContent(),
question.hasGuideline(),
question.getGuideline(),
optionGroupAnswerResponse,
null
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ public record QuestionAnswerResponse(
boolean required,
QuestionType questionType,
String content,
boolean hasGuideline,
@Nullable String guideline,
@Nullable OptionGroupAnswerResponse optionGroup,
@Nullable String answer
) {
Expand Down

0 comments on commit ed00105

Please sign in to comment.