From 6610a8074622d61a63f6afd8dfe7121672bcb4c5 Mon Sep 17 00:00:00 2001 From: Arunima DIvya Date: Fri, 27 Jan 2017 21:02:19 -0800 Subject: [PATCH] Add JavaDoc comment --- .../frc/team3501/robot/commands/driving/SetGear.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/SetGear.java b/src/org/usfirst/frc/team3501/robot/commands/driving/SetGear.java index 9a9a08a..711242f 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/driving/SetGear.java +++ b/src/org/usfirst/frc/team3501/robot/commands/driving/SetGear.java @@ -4,7 +4,14 @@ import org.usfirst.frc.team3501.robot.Robot; import edu.wpi.first.wpilibj.command.Command; +/*** + * Sets the gear. + * + * @author Arunima + * + */ public class SetGear extends Command { + public SetGear() { requires(Robot.getDriveTrain()); } -- 2.30.2