Skip to content

Commit d458055

Browse files
author
NoahAndrews
committed
Remove duplicate semicolons
1 parent 1738f88 commit d458055

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/frc/robot/Constants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public static final class DriveConstants {
3131
public static final double kMaxAngularSpeed = 2 * Math.PI; // radians per second
3232

3333
// Chassis configuration
34-
public static final double kTrackWidth = Units.inchesToMeters(26.5);;
34+
public static final double kTrackWidth = Units.inchesToMeters(26.5);
3535
// Distance between centers of right and left wheels on robot
36-
public static final double kWheelBase = Units.inchesToMeters(26.5);;
36+
public static final double kWheelBase = Units.inchesToMeters(26.5);
3737
// Distance between front and back wheels on robot
3838
public static final SwerveDriveKinematics kDriveKinematics = new SwerveDriveKinematics(
3939
new Translation2d(kWheelBase / 2, kTrackWidth / 2),

0 commit comments

Comments
 (0)