Display the boats competing in the race

- Moved displayStartingBoats() and displayFinishingOrder() into the Race class
- Display the competing boats when the application starts

- #implement
This commit is contained in:
Michael Rausch
2017-03-04 19:13:01 +13:00
parent d4deedcf6b
commit 5492ace1a3
3 changed files with 46 additions and 22 deletions
-1
View File
@@ -9,7 +9,6 @@ public class Boat
{
// The name of the team, this is also the name of the boat
private String teamName = null;
private boolean finishedRace = false;
public Boat(String teamName) {
this.teamName = teamName;