Skip to content

Commit dcf40a6

Browse files
committed
spotless
1 parent 35e0350 commit dcf40a6

1 file changed

Lines changed: 11 additions & 9 deletions

File tree

src/main/java/frc/robot/RobotContainer.java

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,20 @@ public class RobotContainer {
3333
Commands.parallel(
3434
new KickerCommand(kicker, KickerCommand.Position.INTAKE),
3535
Commands.runEnd(
36-
() -> hopper.slowMove(HopperConfig.HOPPER_RETRACT_ROTATION),
37-
() -> hopper.stop(),
38-
hopper).withDeadline(Commands.waitSeconds(2)),
36+
() -> hopper.slowMove(HopperConfig.HOPPER_RETRACT_ROTATION),
37+
() -> hopper.stop(),
38+
hopper)
39+
.withDeadline(Commands.waitSeconds(2)),
3940
new IntakeCommand(intake, IntakeCommand.Position.SLOW_INTAKE))
4041
.finallyDo(
4142
interrupt ->
4243
CommandScheduler.getInstance()
4344
.schedule(
4445
Commands.runEnd(
45-
() -> hopper.move(HopperConfig.HOPPER_EXTEND_ROTATION),
46-
() -> hopper.stop(),
47-
hopper).withDeadline(Commands.waitSeconds(2))));
46+
() -> hopper.move(HopperConfig.HOPPER_EXTEND_ROTATION),
47+
() -> hopper.stop(),
48+
hopper)
49+
.withDeadline(Commands.waitSeconds(2))));
4850

4951
public RobotContainer() {
5052
configureBindings();
@@ -74,9 +76,9 @@ private void configureBindings() {
7476
.toggleOnTrue(new IntakeCommand(intake, IntakeCommand.Position.INTAKE));
7577

7678
controller
77-
.povRight()
78-
.and(() -> !shootGroup.isScheduled())
79-
.toggleOnTrue(new IntakeCommand(intake, IntakeCommand.Position.OUTTAKE));
79+
.povRight()
80+
.and(() -> !shootGroup.isScheduled())
81+
.toggleOnTrue(new IntakeCommand(intake, IntakeCommand.Position.OUTTAKE));
8082
// Right Stick Down = Extend/Retract Hopper
8183
controller
8284
.rightStick()

0 commit comments

Comments
 (0)