From d1d577f52fff9e78e8e2a689e33fd0ba666576db Mon Sep 17 00:00:00 2001 From: NoahLacks63 Date: Thu, 16 Jan 2025 19:52:38 +0000 Subject: [PATCH] fixed a terrible formatting error --- src/main/java/frc/robot/RobotContainer.java | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index aa19770..491bf34 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -147,19 +147,19 @@ public class RobotContainer { ); } - //creates tabs and transforms them on the shuffleboard// - private void configureShuffleboard() { - ShuffleboardTab sensorTab = Shuffleboard.getTab(OIConstants.kSensorsTab); + //creates tabs and transforms them on the shuffleboard + private void configureShuffleboard() { + ShuffleboardTab sensorTab = Shuffleboard.getTab(OIConstants.kSensorsTab); - sensorTab.addDouble("ElevatorPosition", elevator::getEncoderPosition) - .withSize(2, 1) - .withPosition(0, 0) - .withWidget(BuiltInWidgets.kTextView); + sensorTab.addDouble("ElevatorPosition", elevator::getEncoderPosition) + .withSize(2, 1) + .withPosition(0, 0) + .withWidget(BuiltInWidgets.kTextView); - sensorTab.addDouble("ArmPosition", arm::getEncoderPosition) - .withSize(2, 1) - .withPosition(2, 0) - .withWidget(BuiltInWidgets.kTextView); + sensorTab.addDouble("ArmPosition", arm::getEncoderPosition) + .withSize(2, 1) + .withPosition(2, 0) + .withWidget(BuiltInWidgets.kTextView); } public Command getAutonomousCommand() {