Skip to content

Commit

Permalink
[Spotless] Apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettsummerfi3ld authored and github-actions[bot] committed Mar 12, 2024
1 parent cee2849 commit 77364da
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/java/frc/robot/commands/ConveyorCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ public void initialize() {}

@Override
public void execute() {
if (ConveyorJoystick.getRawButton(5) || ConveyorJoystick.getRawButton(3) || ConveyorJoystick.getRawButton(10)) {
if (ConveyorJoystick.getRawButton(5)
|| ConveyorJoystick.getRawButton(3)
|| ConveyorJoystick.getRawButton(10)) {
m_ConveyorSubsystem.intakeConveyor();
} else if (ConveyorJoystick.getRawButton(6) || ConveyorJoystick.getRawButton(4) || ConveyorJoystick.getRawButton(9)) {
} else if (ConveyorJoystick.getRawButton(6)
|| ConveyorJoystick.getRawButton(4)
|| ConveyorJoystick.getRawButton(9)) {
m_ConveyorSubsystem.reverseConveyor();
System.out.println("Conveyor Moving in Reverse");
} else {
Expand Down

0 comments on commit 77364da

Please sign in to comment.