From a6695a850d7f394734c77d75008774ce97063267 Mon Sep 17 00:00:00 2001 From: Rohan Rodrigues Date: Fri, 3 Mar 2017 16:56:08 -0800 Subject: [PATCH] Remove unnecessary comments --- src/org/usfirst/frc/team3501/robot/OI.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/org/usfirst/frc/team3501/robot/OI.java b/src/org/usfirst/frc/team3501/robot/OI.java index 76d9a7f..9000e35 100644 --- a/src/org/usfirst/frc/team3501/robot/OI.java +++ b/src/org/usfirst/frc/team3501/robot/OI.java @@ -46,14 +46,7 @@ public class OI /* implements KeyListener */ { runIndexWheel = new JoystickButton(rightJoystick, Constants.OI.RUN_INDEXWHEEL_PORT); - runIndexWheel.whileHeld( - new RunIndexWheelContinuous()); /* - * { double shooterSpeed = - * (Robot.getShooter()).getShooterRPM(); - * if (shooterSpeed > 0) { - * Robot.getShooter().runIndexWheel(); } - * }); - */ + runIndexWheel.whileHeld(new RunIndexWheelContinuous()); reverseIndexWheel = new JoystickButton(rightJoystick, Constants.OI.REVERSE_INDEXWHEEL_PORT); -- 2.30.2