From 3dd66f07a747cf09e609a4425177f1931029bc82 Mon Sep 17 00:00:00 2001 From: Lauren Meier Date: Sat, 13 Feb 2016 15:03:54 -0800 Subject: [PATCH] move comments below import statements --- .../frc/team3501/robot/commands/ToggleBallRollerExpel.java | 7 ++++--- .../team3501/robot/commands/ToggleBallRollerIntake.java | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java b/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java index 70a1dc94..f7df18f0 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java +++ b/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java @@ -2,18 +2,19 @@ package org.usfirst.frc.team3501.robot.commands; import org.usfirst.frc.team3501.robot.Robot; +import edu.wpi.first.wpilibj.command.Command; + /*** * This command will continually roll the rollers of the intake arm in the * outwards direction and stop the rollers once the command is canceled. * - * pre-condition: This command must be called by a button with the method .whileHeld() in OI + * pre-condition: This command must be called by a button with the method + * .whileHeld() in OI * * @author Lauren and Niyati * */ -import edu.wpi.first.wpilibj.command.Command; - public class ToggleBallRollerExpel extends Command { public ToggleBallRollerExpel() { diff --git a/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerIntake.java b/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerIntake.java index 8299bf60..767b24ad 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerIntake.java +++ b/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerIntake.java @@ -2,18 +2,19 @@ package org.usfirst.frc.team3501.robot.commands; import org.usfirst.frc.team3501.robot.Robot; +import edu.wpi.first.wpilibj.command.Command; + /*** * This command will continually roll the rollers of the intake arm in the * inwards direction and stop the rollers once the command is canceled. * - * pre-condition: This command must be called by a button with the method .whileHeld() in OI + * pre-condition: This command must be called by a button with the method + * .whileHeld() in OI * * @author Lauren and Niyati * */ -import edu.wpi.first.wpilibj.command.Command; - public class ToggleBallRollerIntake extends Command { public ToggleBallRollerIntake() { -- 2.30.2