Skip to content
Snippets Groups Projects

Remove redundant modifiers and add Checkstyle rule

Merged Daniel Gerhardt requested to merge checkstyle-redundant-mod-rule into master
Compare and
11 files
+ 22
21
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -27,7 +27,7 @@ import de.thm.arsnova.model.AnswerStatistics;
public interface AnswerRepository extends CrudRepository<Answer, String> {
<T extends Answer> T findByContentIdUserIdPiRound(String contentId, Class<T> type, String userId, int piRound);
AnswerStatistics findByContentIdRound(String contentId, int round, final int optionCount);
AnswerStatistics findByContentIdRound(String contentId, int round, int optionCount);
int countByContentIdRound(String contentId, int round);