Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
ARSnova Backend
Merge requests
!154
Remove redundant modifiers and add Checkstyle rule
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove redundant modifiers and add Checkstyle rule
checkstyle-redundant-mod-rule
into
master
Overview
0
Commits
1
Pipelines
1
Changes
11
Merged
Daniel Gerhardt
requested to merge
checkstyle-redundant-mod-rule
into
master
5 years ago
Overview
0
Commits
1
Pipelines
1
Changes
11
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
28f67f40
1 commit,
5 years ago
11 files
+
22
−
21
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
src/main/java/de/thm/arsnova/persistence/AnswerRepository.java
+
1
−
1
Options
@@ -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
);