Skip to content

Commit

Permalink
refactor: isAnonymous로 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
bellmin committed Nov 28, 2024
1 parent 4bc357d commit 6b11164
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public CommentEntity toEntity(CommentModel model) {
.writer(model.getWriter())
.presentingTeamId(model.getPresentingTeam())
.content(model.getContent())
.isChecked(model.getIsChecked())
.isAnonymous(model.getIsAnonymous())
.build();
}

Expand All @@ -32,7 +32,7 @@ public CommentModel from(CommentEntity entity) {
.updatedDate(entity.getUpdatedDate())
.content(entity.getContent())
.superCommentId(entity.getSuperCommentId())
.isChecked(entity.getIsChecked())
.isAnonymous(entity.getIsAnonymous())
.build();
}
}

0 comments on commit 6b11164

Please sign in to comment.