Skip to content

Commit

Permalink
Fix : remove unuse getter
Browse files Browse the repository at this point in the history
  • Loading branch information
D-w-nJ committed May 11, 2024
1 parent f1aab77 commit c448305
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,6 @@ public class VideoEntity {

private Float averageRating;

public Long getSummaryId() {
if (summaryId == 0) {
return null;
} else {
return summaryId;
}
}

public static RowMapper<VideoEntity> getRowMapper() {
return (rs, rowNum) -> VideoEntity.builder()
.videoId(rs.getLong("video_id"))
Expand Down

0 comments on commit c448305

Please sign in to comment.