From 2be8dd4ac5a5c3c5acfd65e4fa3e4ac2aae43e30 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 22 Jan 2016 19:50:20 -0800 Subject: [PATCH] delete input speed parameter from drive constructor because drive command is for teleop --- .../frc/team3501/robot/commands/Drive.java | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/org/usfirst/frc/team3501/robot/commands/Drive.java b/src/org/usfirst/frc/team3501/robot/commands/Drive.java index e96d2854..d036f2c8 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/Drive.java +++ b/src/org/usfirst/frc/team3501/robot/commands/Drive.java @@ -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() { + } } -- 2.30.2