From 184ba9cd66f00de9d2a9eabdbdf884d08b186cac Mon Sep 17 00:00:00 2001 From: Kendialouge Date: Thu, 1 Feb 2024 22:06:55 +0000 Subject: [PATCH] [Spotless] Apply formatting --- src/main/java/frc/robot/RobotContainer.java | 4 ++-- src/main/java/frc/robot/commands/DumpControl.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index cc30449..f71ef01 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -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(); @@ -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(); diff --git a/src/main/java/frc/robot/commands/DumpControl.java b/src/main/java/frc/robot/commands/DumpControl.java index 31737e5..8d2efd0 100644 --- a/src/main/java/frc/robot/commands/DumpControl.java +++ b/src/main/java/frc/robot/commands/DumpControl.java @@ -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(); }