diff --git a/eclipse-plugins/edu.wpi.first.wpilib.plugins.java/resources/templates/command-based/RobotMap.java b/eclipse-plugins/edu.wpi.first.wpilib.plugins.java/resources/templates/command-based/RobotMap.java index 020b2b2580..2a08cd36bc 100644 --- a/eclipse-plugins/edu.wpi.first.wpilib.plugins.java/resources/templates/command-based/RobotMap.java +++ b/eclipse-plugins/edu.wpi.first.wpilib.plugins.java/resources/templates/command-based/RobotMap.java @@ -8,11 +8,11 @@ package $package; public class RobotMap { // For example to map the left and right motors, you could define the // following variables to use with your drivetrain subsystem. - // public static final int leftMotor = 1; - // public static final int rightMotor = 2; + // public static int leftMotor = 1; + // public static int rightMotor = 2; // If you are using multiple modules, make sure to define both the port // number and the module. For example you with a rangefinder: - // public static final int rangefinderPort = 1; - // public static final int rangefinderModule = 1; + // public static int rangefinderPort = 1; + // public static int rangefinderModule = 1; }