diff --git a/backend/src/main/java/com/rising/backend/domain/comment/service/CommentService.java b/backend/src/main/java/com/rising/backend/domain/comment/service/CommentService.java index 2263912..c91cb3d 100644 --- a/backend/src/main/java/com/rising/backend/domain/comment/service/CommentService.java +++ b/backend/src/main/java/com/rising/backend/domain/comment/service/CommentService.java @@ -23,7 +23,6 @@ public class CommentService { private final CommentMapper commentMapper; public Comment createComment(CommentDto.CommentCreateRequest dto, Long userId) { - findByCommentId(dto.getParentId()); Comment entity = commentMapper.toCommentEntity(dto, userId); return commentRepository.save(entity); }