X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fshooter%2FRetractPunch.java;fp=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fshooter%2FRetractPunch.java;h=0000000000000000000000000000000000000000;hb=e4fbab026f4a68a4a238839ae2295c56c1134434;hp=c977a2e8de21fb9dcbd574cc623519d1eb70ad29;hpb=faabd6f8711d4f582a4fcec6f46bdee1ddd3d1cf;p=3501%2Fstronghold-2016 diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RetractPunch.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RetractPunch.java deleted file mode 100644 index c977a2e8..00000000 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RetractPunch.java +++ /dev/null @@ -1,34 +0,0 @@ -package org.usfirst.frc.team3501.robot.commands.shooter; - -import org.usfirst.frc.team3501.robot.Robot; - -import edu.wpi.first.wpilibj.command.Command; - -public class RetractPunch extends Command { - - @Override - protected void initialize() { - Robot.shooter.retractPunch(); - } - - @Override - protected void execute() { - - } - - @Override - protected boolean isFinished() { - return true; - } - - @Override - protected void end() { - - } - - @Override - protected void interrupted() { - - } - -}