Fix Spacing Inconsistency

Fix spacing inconsistency in PennyFarthing Constructor
This commit is contained in:
Chaitya Shah 2015-10-20 11:45:58 -04:00
parent b354013dc9
commit 7c15eaefcd

View File

@ -519,7 +519,7 @@ class PennyFarthing extends Bicycle {
// (Penny Farthings are those bicycles with the big front wheel.
// They have no gears.)
public PennyFarthing(int startCadence, int startSpeed){
public PennyFarthing(int startCadence, int startSpeed) {
// Call the parent constructor with super
super(startCadence, startSpeed, 0, "PennyFarthing");
}