Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
scoreboard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
João Lino
scoreboard
Commits
4815a95f
Commit
4815a95f
authored
Aug 02, 2022
by
João Lino
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove leading the from javadoc tags
parent
3f8f0a2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/main/java/org/example/scoreboard/api/IScoreboard.java
src/main/java/org/example/scoreboard/api/IScoreboard.java
+5
-5
No files found.
src/main/java/org/example/scoreboard/api/IScoreboard.java
View file @
4815a95f
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment