Skip to content

Commit

Permalink
chore: 안쓰는 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
haroya01 committed Sep 17, 2023
1 parent a6b29d3 commit 0440196
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ public void updateAuctionItemComment(AuctionItemCommentUpdateRequest auctionItem

@Transactional
public void deleteAuctionItemComment(AuctionItemCommentDeleteRequest auctionItemCommentDeleteRequest) {
System.out.println(auctionItemCommentDeleteRequest.getCommentId());
System.out.println(auctionItemCommentDeleteRequest.getUserId());
Comment comment = (Comment) this.auctionItemCommentRepository.findById(auctionItemCommentDeleteRequest.getCommentId()).orElseThrow(() -> {
return new RuntimeException("댓글을 찾을수 없습니다");
});
Expand Down

0 comments on commit 0440196

Please sign in to comment.