Autoformatted

This commit is contained in:
Adam Long 2016-09-28 18:54:01 +00:00
parent a9b18bc58a
commit b1f2c54ad2
14 changed files with 53 additions and 51 deletions

View File

@ -6,7 +6,9 @@ public class RoutineRaiseArmFire extends CommandGroup {
public RoutineRaiseArmFire() {
addSequential(new AutoSetArmPosition(90));
//Raise the arm a little before spinning rollers
try{ wait(2); }catch(Exception e){ }
try {
wait(2);
} catch (Exception e) { }
addParallel(new AutoSpinRollers(0.5, 5));
addSequential(new AutoSetShooterState(true));
}