Commit 58811b0e authored by João Lino's avatar João Lino

fill missing IScoreboard javadoc

parent a70e69a9
Pipeline #11 failed with stages
......@@ -29,9 +29,9 @@ public interface IScoreboard {
* Update team scores.
* Receiving the pair score; home team score and away team score updates a game score.
*
* @param match
* @param homeTeamScore
* @param awayTeamScore
* @param match match to update
* @param homeTeamScore home team score
* @param awayTeamScore away team score
* @return updated match
*/
IMatch updateScore(IMatch match, IScore homeTeamScore, IScore awayTeamScore);
......@@ -40,7 +40,7 @@ public interface IScoreboard {
* Get a summary of games by total score.
* Those games with the same total score will be returned ordered by the most recently added to our system.
*
* @return
* @return ordered game summary
*/
ArrayList<IMatch> getGameSummary();
......
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