Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdm/src/java/association/Team.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

public class Team
{
List<Player> doublesTeam = new ArrayList<Player>();
List<Player> doublesTeam = new ArrayList<Player>(); // Should bot be plural, or should be "players"
Team(Player player1, Player player2)
{
this.doublesTeam.add(player1);
this.doublesTeam.add(player1); // Should check for same player added twice?
this.doublesTeam.add(player2);
}
void showAll()
Expand Down