Skip to content

Commit 2cbaece

Browse files
committed
spotless
1 parent 816b216 commit 2cbaece

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

src/main/java/frc/robot/commands/auton/NonProcessorShallowSlowAutonCommand.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package frc.robot.commands.auton;
22

3-
import java.util.List;
4-
53
import edu.wpi.first.math.geometry.Pose2d;
64
import edu.wpi.first.math.geometry.Rotation2d;
75
import edu.wpi.first.wpilibj2.command.ParallelCommandGroup;
@@ -21,9 +19,11 @@
2119
import frc.robot.subsystems.robotState.RobotStateSubsystem.ScoringLevel;
2220
import frc.robot.subsystems.tagAlign.TagAlignSubsystem;
2321
import frc.robot.subsystems.vision.VisionSubsystem;
22+
import java.util.List;
2423

25-
public class NonProcessorShallowSlowAutonCommand extends SequentialCommandGroup implements AutoCommandInterface {
26-
private PathHandler pathHandler;
24+
public class NonProcessorShallowSlowAutonCommand extends SequentialCommandGroup
25+
implements AutoCommandInterface {
26+
private PathHandler pathHandler;
2727
private DriveSubsystem driveSubsystem;
2828
private DriveAutonServoCommand startPath;
2929
private CoralSubsystem coralSubsystem;
@@ -121,5 +121,4 @@ public void reassignAlliance() {
121121
pathHandler.setStartNode(startNode);
122122
// pathHandler.reassignAlliance();
123123
}
124-
125124
}

src/main/java/frc/robot/commands/auton/ProcessorShallowSlowAutonCommand.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package frc.robot.commands.auton;
22

3-
import java.util.List;
4-
53
import edu.wpi.first.math.geometry.Pose2d;
64
import edu.wpi.first.math.geometry.Rotation2d;
75
import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
@@ -19,10 +17,12 @@
1917
import frc.robot.subsystems.robotState.RobotStateSubsystem.ScoringLevel;
2018
import frc.robot.subsystems.tagAlign.TagAlignSubsystem;
2119
import frc.robot.subsystems.vision.VisionSubsystem;
20+
import java.util.List;
2221

23-
public class ProcessorShallowSlowAutonCommand extends SequentialCommandGroup implements AutoCommandInterface {
22+
public class ProcessorShallowSlowAutonCommand extends SequentialCommandGroup
23+
implements AutoCommandInterface {
2424

25-
private PathHandler pathHandler;
25+
private PathHandler pathHandler;
2626
private DriveSubsystem driveSubsystem;
2727
private DriveAutonServoCommand startPath;
2828
private CoralSubsystem coralSubsystem;
@@ -118,5 +118,4 @@ public void reassignAlliance() {
118118
pathHandler.setStartNode(startNode);
119119
// pathHandler.reassignAlliance();
120120
}
121-
122121
}

src/main/java/frc/robot/subsystems/auto/AutoSwitch.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
99
import frc.robot.commands.auton.AutoCommandInterface;
1010
import frc.robot.commands.auton.DefaultAutonCommand;
11-
import frc.robot.commands.auton.NonProcessorShallowAutonCommand;
1211
import frc.robot.commands.auton.NonProcessorShallowSlowAutonCommand;
13-
import frc.robot.commands.auton.ProcessorShallowAutonCommand;
1412
import frc.robot.commands.auton.ProcessorShallowSlowAutonCommand;
1513
import frc.robot.constants.AutonConstants;
1614
import frc.robot.constants.RobotConstants;

0 commit comments

Comments
 (0)