Skip to content

Commit

Permalink
Merge pull request #1534 from DroidPlanner/default_imperial_speed_unit
Browse files Browse the repository at this point in the history
Changed the default speed unit from ft/s to mph.
  • Loading branch information
m4gr3d committed Jul 23, 2015
2 parents 9a38e3e + 91db480 commit 38a42c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
public class ImperialSpeedUnitProvider extends SpeedUnitProvider {
@Override
public SpeedUnit fromBaseToTarget(MeterPerSecond base) {
return Operation.convert(base, UnitIdentifier.FOOT_PER_SECOND);
return Operation.convert(base, UnitIdentifier.MILES_PER_HOUR);
}
}

0 comments on commit 38a42c6

Please sign in to comment.