move comments below import statements
authorLauren Meier <meier.lauren@gmail.com>
Sat, 13 Feb 2016 23:03:54 +0000 (15:03 -0800)
committerLauren Meier <meier.lauren@gmail.com>
Sat, 13 Feb 2016 23:03:54 +0000 (15:03 -0800)
src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java
src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerIntake.java

index 70a1dc945bc6f960f9b7c4b6d021f4f544dcf8f8..f7df18f01d6cfef348b85be38d1984b6a3a3a58f 100644 (file)
@@ -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() {
index 8299bf607412f2b7d25b335e30e34d27f2b889a6..767b24ad27690d22e312249257b02cb98b9eeaaa 100644 (file)
@@ -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() {