From: Lauren Meier Date: Wed, 10 Feb 2016 04:07:54 +0000 (-0800) Subject: delete files because not needed with task requirements anymore X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=e653bedc65527252e17349dd814c2d2182401a4c delete files because not needed with task requirements anymore --- diff --git a/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmDown.java b/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmDown.java deleted file mode 100755 index 44460bec..00000000 --- a/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmDown.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.usfirst.frc.team3501.robot.commands; - -import edu.wpi.first.wpilibj.command.Command; - -public class MoveIntakeArmDown extends Command { - - public MoveIntakeArmDown() { - } - - @Override - protected void initialize() { - } - - @Override - protected void execute() { - } - - @Override - protected boolean isFinished() { - return false; - } - - @Override - protected void end() { - } - - @Override - protected void interrupted() { - } -}