Deleted the unnecessary lines of code
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / shooter / RunFlyWheel.java
index 83d558acfca15a4d069d1cc230b9227c011242fa..a20af8e63badd3bfee9722e5037c9771b60a8a52 100644 (file)
@@ -25,7 +25,6 @@ public class RunFlyWheel extends Command {
   private double target;
 
   public RunFlyWheel(double maxTimeOut) {
-    requires(shooter);
 
     this.wheelP = this.shooter.wheelP;
     this.wheelI = this.shooter.wheelI;
@@ -39,11 +38,13 @@ public class RunFlyWheel extends Command {
   }
 
   // Called just before this Command runs the first time
+  @Override
   protected void initialize() {
     this.wheelController.setSetPoint(this.target);
   }
 
   // Called repeatedly when this Command is scheduled to run
+  @Override
   protected void execute() {
     double shooterSpeed = this.wheelController
         .calcPID(this.shooter.getShooterRPM());
@@ -52,18 +53,20 @@ public class RunFlyWheel extends Command {
   }
 
   // Make this return true when this Command no longer needs to run execute()
+  @Override
   protected boolean isFinished() {
     return timeSinceInitialized() >= maxTimeOut;
   }
 
   // Called once after isFinished returns true
+  @Override
   protected void end() {
     this.shooter.stopFlyWheel();
   }
 
   // Called when another command which requires one or more of the same
   // subsystems is scheduled to run
+  @Override
   protected void interrupted() {
-    end();
   }
 }