From: Arunima DIvya Date: Sat, 28 Jan 2017 05:02:19 +0000 (-0800) Subject: Add JavaDoc comment X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=6610a8074622d61a63f6afd8dfe7121672bcb4c5 Add JavaDoc comment --- 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()); }