]> git.taranathan.com Git - FRC2026.git/commitdiff
remove spaces ig?
authormoo <moogoesmeow123@gmail.com>
Thu, 7 May 2026 00:52:16 +0000 (17:52 -0700)
committermoo <moogoesmeow123@gmail.com>
Thu, 7 May 2026 00:52:16 +0000 (17:52 -0700)
src/main/java/frc/robot/RobotContainer.java

index cc40bd99ccb21525990ea48f8a78bc4c5b3e3565..2d5d4743f547ee197c98003bc6f7e74b7bd75bd9 100644 (file)
@@ -80,9 +80,9 @@ public class RobotContainer {
   // auto Command selection
   private final SendableChooser<Command> autoChooser = new SendableChooser<>();
   private final AutoChooser choreoAutoChooser = new AutoChooser();
-  
+
   // choreo auto factory
-  AutoFactory autoFactory ; 
+  AutoFactory autoFactory ;
   /**
    * The container for the robot. Contains subsystems, OI devices, and commands.
    * <p>
@@ -122,7 +122,7 @@ public class RobotContainer {
         turret = new Turret();
         shooter = new Shooter();
         hood = new Hood();
-      
+
       case SwerveCompetition: // AKA "Vantage"
 
       case BetaBot: // AKA "Pancake"
@@ -160,14 +160,14 @@ public class RobotContainer {
         if (turret != null) {
           turret.setDefaultCommand(new Superstructure(turret, drive, hood, shooter, spindexer));
         }
-        
+
         if (drive != null && driver != null) {
           // drive.setDefaultCommand(new DefaultDriveCommand(drive, driver));
           SmartDashboard.putData("SysId Characterization", new SysIDDriveCommand(drive));
         }
         break;
     }
-    
+
 
        if (intake != null && hood != null && turret != null)
                // CommandScheduler.getInstance().schedule(new HardstopWarning(hood, intake, turret)); (no more crt for this)
@@ -346,7 +346,7 @@ public class RobotContainer {
 
 
     DynamicAutoBuilder dynamicAutoBuilder = new DynamicAutoBuilder(spindexer, turret, hood, intake);
-    
+
     // names
     String leftDynamicLiberalDoubleSwipe = "LeftDynamicDoubleLiberalSwipe";
     String rightDynamicLiberalDoubleSwipe = "RightDynamicDoubleLiberalSwipe";