From 9e91dcb88316fdb4a1915c9d164b5e753a1ba89d Mon Sep 17 00:00:00 2001 From: Cindy Zhang Date: Sat, 4 Feb 2017 14:31:49 -0800 Subject: [PATCH] delete example command group --- .../commandgroups/ExampleCommandGroup.java | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/org/usfirst/frc/team3501/robot/commandgroups/ExampleCommandGroup.java diff --git a/src/org/usfirst/frc/team3501/robot/commandgroups/ExampleCommandGroup.java b/src/org/usfirst/frc/team3501/robot/commandgroups/ExampleCommandGroup.java deleted file mode 100644 index 27909f4..0000000 --- a/src/org/usfirst/frc/team3501/robot/commandgroups/ExampleCommandGroup.java +++ /dev/null @@ -1,28 +0,0 @@ -package org.usfirst.frc.team3501.robot.commandgroups; - -import edu.wpi.first.wpilibj.command.CommandGroup; - -/** - * Example Command group - */ -public class ExampleCommandGroup extends CommandGroup { - - public ExampleCommandGroup() { - // Add Commands here: - // e.g. addSequential(new Command1()); - // addSequential(new Command2()); - // these will run in order. - - // To run multiple commands at the same time, - // use addParallel() - // e.g. addParallel(new Command1()); - // addSequential(new Command2()); - // Command1 and Command2 will run in parallel. - - // A command group will require all of the subsystems that each member - // would require. - // e.g. if Command1 requires chassis, and Command2 requires arm, - // a CommandGroup containing them would require both the chassis and the - // arm. - } -} -- 2.30.2