From a239233dae1da3a0c9cc63b24c43cce3f88d14f0 Mon Sep 17 00:00:00 2001 From: RednedEpic Date: Sun, 30 Jun 2024 18:15:57 -0500 Subject: [PATCH] that moment when javadoc causes ur compile to fail --- .../battleplugins/arena/module/tournaments/Tournament.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/module/tournaments/src/main/java/org/battleplugins/arena/module/tournaments/Tournament.java b/module/tournaments/src/main/java/org/battleplugins/arena/module/tournaments/Tournament.java index 7abc264e..23c7be1a 100644 --- a/module/tournaments/src/main/java/org/battleplugins/arena/module/tournaments/Tournament.java +++ b/module/tournaments/src/main/java/org/battleplugins/arena/module/tournaments/Tournament.java @@ -3,9 +3,9 @@ import org.battleplugins.arena.Arena; import org.battleplugins.arena.ArenaPlayer; import org.battleplugins.arena.competition.Competition; +import org.battleplugins.arena.competition.CompetitionType; import org.battleplugins.arena.competition.LiveCompetition; import org.battleplugins.arena.competition.PlayerRole; -import org.battleplugins.arena.competition.event.Event; import org.battleplugins.arena.competition.map.LiveCompetitionMap; import org.battleplugins.arena.competition.map.MapType; import org.battleplugins.arena.module.tournaments.algorithm.SingleEliminationTournamentCalculator; @@ -24,7 +24,6 @@ import java.util.List; import java.util.Set; import java.util.concurrent.TimeUnit; -import java.util.stream.Stream; import static org.battleplugins.arena.module.tournaments.TournamentMessages.NEXT_ROUND_STARTING; import static org.battleplugins.arena.module.tournaments.TournamentMessages.NEXT_ROUND_STARTING_IN; @@ -47,7 +46,7 @@ * in a series of matches until a winner is determined. *

* Tournaments are typically bracketed and have a set number of players. - * They can also have multiple rounds. These act similar to an {@link Event} + * They can also have multiple rounds. These act similar to an {@link CompetitionType#EVENT} * but differ in the sense that they run on top of existing arenas. *

* This varies slightly from a conventional bracket tournament as it allows