Skip to content

Commit

Permalink
Fix missing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
vmcj committed Feb 4, 2024
1 parent 7a94671 commit 55427fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/Controller/Jury/ExecutableController.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function indexAction(Request $request): Response
if (in_array($e, $executablesWithContestProblems)) {
foreach (array_merge($e->getProblemsRun()->toArray(), $e->getProblemsCompare()->toArray()) as $execProblem) {
$execContestProblems = $execProblem->getContestProblems();
foreach($contestProblemsWithExecutables as $cp) {
foreach ($contestProblemsWithExecutables as $cp) {
if ($execContestProblems->contains($cp)) {
$badges[] = $cp;
}
Expand Down

0 comments on commit 55427fc

Please sign in to comment.