delete input speed parameter from drive constructor because drive command is for...
authorYour Name <you@example.com>
Sat, 23 Jan 2016 03:50:20 +0000 (19:50 -0800)
committerShaina Chen <shaina.sierra@gmail.com>
Fri, 5 Feb 2016 04:20:17 +0000 (20:20 -0800)
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 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() {
+  }
 }
 }