Skip to content

Commit

Permalink
feat: review porint 수정2
Browse files Browse the repository at this point in the history
  • Loading branch information
koreaioi committed Jul 15, 2024
1 parent c2182dd commit e1986f0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class ReviewResponseDto {

private int absent;

private int point;
// private int point;

public static ReviewResponseDto of(Review review){
return ReviewResponseDto.builder()
Expand All @@ -36,7 +36,7 @@ public static ReviewResponseDto of(Review review){
.slowAnswer(review.getSlowAnswer())
.passive(review.getSlowAnswer())
.absent(review.getAbsent())
.point(review.getPoint())
// .point(review.getPoint())
.build();
}
}

0 comments on commit e1986f0

Please sign in to comment.