Fixed build. (Actually this time)

All doc string annotations were required to be fixed for all methods

tags: #issue[34]
This commit is contained in:
William Muir
2017-08-03 11:45:14 +12:00
parent 8e24c204fd
commit c655cb3fab
10 changed files with 24 additions and 4 deletions
+5 -2
View File
@@ -85,8 +85,10 @@ public class Yacht {
/**
* Used in EventTest and RaceTest.
*
* @param boatName Create a yacht object with name.
* @param boatName boatName
* @param shortName shortName
* @param location location
* @param heading heading
*/
public Yacht(String boatName, String shortName, GeoPoint location, Double heading) {
this.boatName = boatName;
@@ -103,6 +105,7 @@ public class Yacht {
* @param boatName The name of the team sailing the boat
* @param boatVelocity The speed of the boat in meters/second
* @param shortName A shorter version of the teams name
* @param id The id for the yacht
*/
public Yacht(String boatName, double boatVelocity, String shortName, int id) {
this.boatName = boatName;