Commit 4815a95f authored by João Lino's avatar João Lino

remove leading the from javadoc tags

parent 3f8f0a2b
...@@ -10,11 +10,11 @@ public interface IScoreboard { ...@@ -10,11 +10,11 @@ public interface IScoreboard {
* Starts a match between two teams. * Starts a match between two teams.
* When a game starts, two teams are required. * When a game starts, two teams are required.
* *
* @param homeTeam the home team * @param homeTeam home team
* @param awayTeam the away team * @param awayTeam away team
* @throws InvalidParameterException team is already in a match or the same team is passed as home and away * @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 * @throws NullPointerException one, or both, of the passed teams is null
* @return the match started * @return match started
*/ */
IMatch startMatch(ITeam homeTeam, ITeam awayTeam); IMatch startMatch(ITeam homeTeam, ITeam awayTeam);
...@@ -22,10 +22,10 @@ public interface IScoreboard { ...@@ -22,10 +22,10 @@ public interface IScoreboard {
* Finish game. * Finish game.
* It will remove a match from the scoreboard. * 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 NoSuchElementException match is not ongoing
* @throws NullPointerException passed match is null * @throws NullPointerException passed match is null
* @return the finished match * @return finished match
*/ */
IMatch finishMatch(IMatch match); IMatch finishMatch(IMatch match);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment