Delete move arm command
authorYour Name <you@example.com>
Tue, 19 Jan 2016 03:20:09 +0000 (19:20 -0800)
committerYour Name <you@example.com>
Tue, 19 Jan 2016 03:20:09 +0000 (19:20 -0800)
src/org/usfirst/frc/team3501/robot/commands/MoveArm.java [deleted file]

diff --git a/src/org/usfirst/frc/team3501/robot/commands/MoveArm.java b/src/org/usfirst/frc/team3501/robot/commands/MoveArm.java
deleted file mode 100755 (executable)
index aa6319a..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package org.usfirst.frc.team3501.robot.commands;
-
-import edu.wpi.first.wpilibj.command.Command;
-
-/**
- *
- */
-public class MoveArm extends Command {
-
-    public MoveArm(int direction, double speed) {
-        // Use requires() here to declare subsystem dependencies
-        // eg. requires(chassis);
-    }
-
-    // Called just before this Command runs the first time
-    protected void initialize() {
-    }
-
-    // Called repeatedly when this Command is scheduled to run
-    protected void execute() {
-    }
-
-    // Make this return true when this Command no longer needs to run execute()
-    protected boolean isFinished() {
-        return false;
-    }
-
-    // Called once after isFinished returns true
-    protected void end() {
-    }
-
-    // Called when another command which requires one or more of the same
-    // subsystems is scheduled to run
-    protected void interrupted() {
-    }
-}