Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
persi0815 committed Aug 26, 2024
1 parent caf0f63 commit f1cce98
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Slice;
import org.springframework.stereotype.Service;

import java.io.IOException;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
import java.util.List;
import java.util.Objects;

Expand All @@ -50,7 +46,7 @@ public Review findById(Long id){
}

@Transactional
public Review create(ReviewReqDto reviewReqDto, User user, Performance performance, Pair pair) throws IOException {
public Review create(ReviewReqDto reviewReqDto, User user, Performance performance, Pair pair) {

Review review = ReviewConverter.saveReview(reviewReqDto, user, performance, pair);
reviewRepository.save(review);
Expand Down

0 comments on commit f1cce98

Please sign in to comment.