From 4815a95f6dbda177d98da27622a0399a808b0967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lino?= Date: Tue, 2 Aug 2022 22:31:47 +0200 Subject: [PATCH] remove leading the from javadoc tags --- .../java/org/example/scoreboard/api/IScoreboard.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/example/scoreboard/api/IScoreboard.java b/src/main/java/org/example/scoreboard/api/IScoreboard.java index 8024fba..ccd163d 100644 --- a/src/main/java/org/example/scoreboard/api/IScoreboard.java +++ b/src/main/java/org/example/scoreboard/api/IScoreboard.java @@ -10,11 +10,11 @@ public interface IScoreboard { * Starts a match between two teams. * When a game starts, two teams are required. * - * @param homeTeam the home team - * @param awayTeam the away team + * @param homeTeam home team + * @param awayTeam away team * @throws InvalidParameterException team is already in a match or the same team is passed as home and away * @throws NullPointerException one, or both, of the passed teams is null - * @return the match started + * @return match started */ IMatch startMatch(ITeam homeTeam, ITeam awayTeam); @@ -22,10 +22,10 @@ public interface IScoreboard { * Finish game. * It will remove a match from the scoreboard. * - * @param match the match to finish + * @param match match to finish * @throws NoSuchElementException match is not ongoing * @throws NullPointerException passed match is null - * @return the finished match + * @return finished match */ IMatch finishMatch(IMatch match); -- 2.24.1