Skip to content

Commit ec9ad18

Browse files
committed
Fix checkstyle issues
1 parent e924a84 commit ec9ad18

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

library/src/main/java/me/proxer/library/entity/info/Recommendation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,12 @@ public class Recommendation implements ProxerIdItem {
115115
@Json(name = "positive")
116116
private Boolean userVote;
117117

118+
@SuppressWarnings("checkstyle:parameternumber")
118119
public Recommendation(final String id, final String name, final Set<Genre> genres,
119120
final Set<FskConstraint> fskConstraints, final String description, final Medium medium,
120121
final int episodeAmount, final MediaState state, final int ratingSum, final int ratingAmount,
121122
final int clicks, final Category category, final License license, final int positiveVotes,
122-
final int negativeVotes, @Nullable Boolean userVote) {
123+
final int negativeVotes, @Nullable final Boolean userVote) {
123124
this.id = id;
124125
this.name = name;
125126
this.genres = genres;

0 commit comments

Comments
 (0)