Skip to content

Commit

Permalink
Revert to more compact method reference syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsaglam committed Jul 30, 2024
1 parent 5ccddb4 commit 86af3f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/de/jplag/SubmissionSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void normalizeSubmissions() {
if (baseCodeSubmission != null) {
baseCodeSubmission.normalize();
}
ProgressBarLogger.iterate(ProgressBarType.TOKEN_STRING_NORMALIZATION, submissions, submission -> submission.normalize());
ProgressBarLogger.iterate(ProgressBarType.TOKEN_STRING_NORMALIZATION, submissions, Submission::normalize);
}

private List<Submission> filterValidSubmissions() {
Expand Down

0 comments on commit 86af3f8

Please sign in to comment.