Skip to content

Commit

Permalink
Update code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Foulest committed Dec 5, 2024
1 parent 73a1c87 commit eb4ffa3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
* In this bracket format, 16 teams play against each other in a Swiss format.
* Every match is a BO1 until a team has a chance to be eliminated, at which point it becomes a BO3.
* The top 8 teams advance to the Champions stage, while the bottom 8 teams are eliminated.
*
* @author Foulest
*/
@Data
public class ChampionsBracket {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/net/foulest/swiss/brackets/StandardBracket.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
* In this bracket format, 16 teams play against each other in a Swiss format.
* Every match is a BO1 until a team has a chance to be eliminated, at which point it becomes a BO3.
* The top 8 teams advance to the Champions stage, while the bottom 8 teams are eliminated.
*
* @author Foulest
*/
@Data
public class StandardBracket {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/net/foulest/swiss/match/Match.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

/**
* Represents a match between two teams.
*
* @author Foulest
*/
@Data
@AllArgsConstructor
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/net/foulest/swiss/team/Team.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

/**
* Represents a team in the tournament.
*
* @author Foulest
*/
@Data
@AllArgsConstructor
Expand Down

0 comments on commit eb4ffa3

Please sign in to comment.