Skip to content

Commit

Permalink
[Spotless] Apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kendialouge authored and github-actions[bot] committed Feb 1, 2024
1 parent 2b857dd commit 184ba9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class RobotContainer {
// CommandJoystick driverController = new
// CommandJoystick(3);//(OperatorConstants.DRIVER_CONTROLLER_PORT);
XboxController driverXbox = new XboxController(0);
//Connect
// Connect
private final Intake intake = new Intake();
private final Dump dump = new Dump();
private final Conveyor conveyor = new Conveyor();
Expand All @@ -58,7 +58,7 @@ public RobotContainer() {
intake.setDefaultCommand(new IntakeCommand(intake));
dump.setDefaultCommand(new DumpControl(dump));
conveyor.setDefaultCommand(new ConveyorCommand(conveyor));

// Configure the trigger bindings
configureBindings();

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/commands/DumpControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public void initialize() {}
// Called every time the scheduler runs while the command is scheduled.
@Override
public void execute() {
//TODO: Change this to the correct button
// TODO: Change this to the correct button
if (Controller.getRawButton(1)) {
DumpSubsystem.open();
//TODO: Change this to the correct button
// TODO: Change this to the correct button
} else if (Controller.getRawButton(2)) {
DumpSubsystem.close();
}
Expand Down

0 comments on commit 184ba9c

Please sign in to comment.