[wpilibj] DifferentialDrivetrainSim: Rename constants to match the style guide (#3312)

This commit is contained in:
Noam Zaks
2021-05-01 14:09:23 +00:00
committed by GitHub
parent 65c148536d
commit 4e424d51f4

View File

@@ -416,8 +416,15 @@ public class DifferentialDrivetrainSim {
/** Represents common wheel sizes of the kit drivetrain. */
public enum KitbotWheelSize {
kSixInch(Units.inchesToMeters(6)),
kEightInch(Units.inchesToMeters(8)),
kTenInch(Units.inchesToMeters(10)),
@Deprecated
SixInch(Units.inchesToMeters(6)),
@Deprecated
EightInch(Units.inchesToMeters(8)),
@Deprecated
TenInch(Units.inchesToMeters(10));
@SuppressWarnings("MemberName")