Fixed speed displayed in table view

#story [17]
main
cbt24 9 years ago
parent f7477adb36
commit 6fe80ad52c

@ -21,7 +21,7 @@ public class Boat {
*/ */
public Boat(String name, double velocity, String abbrev) { public Boat(String name, double velocity, String abbrev) {
this.velocity = velocity; this.velocity = velocity;
this.velocityProp = new SimpleStringProperty(String.valueOf(velocity* 1.94384)); this.velocityProp = new SimpleStringProperty(String.valueOf(Math.round(velocity)));
this.abbrev = abbrev; this.abbrev = abbrev;
this.name = new SimpleStringProperty(name); this.name = new SimpleStringProperty(name);
} }

Loading…
Cancel
Save