delete input speed parameter from drive constructor because drive command is for...
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / Drive.java
index e96d2854d39ea8f6cb9762fb407022d51bea7f91..d036f2c8029b331fc30c6d828e57fd9409abc4dd 100755 (executable)
@@ -4,27 +4,27 @@ import edu.wpi.first.wpilibj.command.Command;
 
 public class Drive extends Command {
 
-       public Drive(double speed) {
-       }
+  public Drive() {
+  }
 
-       @Override
-       protected void initialize() {
-       }
+  @Override
+  protected void initialize() {
+  }
 
-       @Override
-       protected void execute() {
-       }
+  @Override
+  protected void execute() {
+  }
 
-       @Override
-       protected boolean isFinished() {
-               return false;
-       }
+  @Override
+  protected boolean isFinished() {
+    return false;
+  }
 
-       @Override
-       protected void end() {
-       }
+  @Override
+  protected void end() {
+  }
 
-       @Override
-       protected void interrupted() {
-       }
+  @Override
+  protected void interrupted() {
+  }
 }