Skip to content

Commit 09c33b5

Browse files
Fixing checkstyle
1 parent 3675b05 commit 09c33b5

File tree

2 files changed

+2
-2
lines changed
  • backend
    • kendo-tournament-persistence/src/main/java/com/softwaremagico/kt/persistence/entities
    • kendo-tournament-rest/src/main/java/com/softwaremagico/kt/rest/services

2 files changed

+2
-2
lines changed

backend/kendo-tournament-persistence/src/main/java/com/softwaremagico/kt/persistence/entities/Duel.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.util.ArrayList;
4747
import java.util.HashSet;
4848
import java.util.List;
49-
import java.util.Objects;
5049
import java.util.Set;
5150

5251
@Entity

backend/kendo-tournament-rest/src/main/java/com/softwaremagico/kt/rest/services/FightServices.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,8 @@ public List<FightDTO> getByCompetitor(@Parameter(description = "Id of the compet
204204

205205
@PreAuthorize("hasAnyAuthority(@securityService.viewerPrivilege, @securityService.editorPrivilege, @securityService.adminPrivilege,"
206206
+ " @securityService.participantPrivilege)")
207-
@Operation(summary = "Checks if the scores are added from the competitor's name, to the center of the sheet.", security = @SecurityRequirement(name = "bearerAuth"))
207+
@Operation(summary = "Checks if the scores are added from the competitor's name, to the center of the sheet.",
208+
security = @SecurityRequirement(name = "bearerAuth"))
208209
@GetMapping(value = "/scores-from-name-to-center/tournaments/{tournamentId}", produces = MediaType.APPLICATION_JSON_VALUE)
209210
public boolean scoresGoesFromCompetitorsNameToCenter(@Parameter(description = "Id of an existing tournament", required = true)
210211
@PathVariable("tournamentId") Integer tournamentId,

0 commit comments

Comments
 (0)