delete MoveIntakeArmToHeight
authorShivani Oghanta <shivani.oghanta@gmail.com>
Thu, 11 Feb 2016 05:12:09 +0000 (21:12 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sat, 13 Feb 2016 19:52:19 +0000 (11:52 -0800)
src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmToBallIntakeHeight.java [deleted file]

diff --git a/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmToBallIntakeHeight.java b/src/org/usfirst/frc/team3501/robot/commands/MoveIntakeArmToBallIntakeHeight.java
deleted file mode 100644 (file)
index 35f97f7..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-package org.usfirst.frc.team3501.robot.commands;
-
-import org.usfirst.frc.team3501.robot.Constants;
-
-import edu.wpi.first.wpilibj.command.CommandGroup;
-
-public class MoveIntakeArmToBallIntakeHeight extends CommandGroup {
-       private static final double SPEED = 0.6;
-
-       public MoveIntakeArmToBallIntakeHeight() {
-               addSequential(new MoveIntakeArmToHeight(Constants.IntakeArm.BALL_INTAKE_HEIGHT, SPEED));
-       }
-}