Reset all files to have unix format and delete setShooterSpeed duplicate
authorKevin Zhang <icestormf1@gmail.com>
Sun, 24 Jan 2016 00:18:52 +0000 (16:18 -0800)
committerKevin Zhang <icestormf1@gmail.com>
Sun, 24 Jan 2016 00:18:52 +0000 (16:18 -0800)
src/org/usfirst/frc/team3501/robot/commands/setShooterSpeed.java [deleted file]

diff --git a/src/org/usfirst/frc/team3501/robot/commands/setShooterSpeed.java b/src/org/usfirst/frc/team3501/robot/commands/setShooterSpeed.java
deleted file mode 100644 (file)
index 07cff70..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-package org.usfirst.frc.team3501.robot.commands;
-
-import org.usfirst.frc.team3501.robot.Robot;
-
-import edu.wpi.first.wpilibj.command.Command;
-
-public class setShooterSpeed extends Command {
-  double change = 0.0;
-  double speed = Robot.shooter.getCurrentSetPoint();
-
-  public setShooterSpeed(double speed) {
-    this.speed = speed;
-  }
-
-  public setShooterSpeed(double speed, double change) {
-    this.speed = speed;
-    this.change = change;
-  }
-
-  @Override
-  protected void initialize() {
-  }
-
-  @Override
-  protected void execute() {
-    Robot.shooter.setSpeed(change);
-  }
-
-  @Override
-  protected boolean isFinished() {
-    return true;
-  }
-
-  @Override
-  protected void end() {
-  }
-
-  @Override
-  protected void interrupted() {
-  }
-}