Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
rkanemoto committed Sep 15, 2023
1 parent a78049d commit c830b86
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/main/java/frc/robot/autos/Autos.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ private static Map<String, Command> wrapAutoEventMap(Map<String, Command> eventM

private final LocalizationSubsystem localization;
private final SwerveSubsystem swerve;
private final ImuSubsystem imu;
private final ElevatorSubsystem elevator;
private final WristSubsystem wrist;
private final IntakeSubsystem intake;

private final SwerveAutoBuilder autoBuilder;
Expand All @@ -97,10 +94,7 @@ public Autos(
AutoScoreManager visionManager) {
this.localization = localization;
this.swerve = swerve;
this.imu = imu;
this.superstructure = superstructure;
this.elevator = elevator;
this.wrist = wrist;
this.intake = intake;
this.autoBalance = autoBalance;
this.groundManager = groundManager;
Expand Down Expand Up @@ -330,12 +324,6 @@ private Command buildAutoCommand(AutoKind auto) {
return autoCommand;
}

// each time you add a stop point in pathplanner, that corresponds to a new element in the
// pathGroup arraylist
// if you have no stop points, the pathGroup arraylist is going to just have a single element
// if you have one stop point in the middle, it will have two items
// etc

private Command getBlueShortSide3Auto(List<PathPlannerTrajectory> pathGroup) {
System.out.println("Markers array:");
System.out.println(pathGroup.get(0).getMarkers());
Expand Down

0 comments on commit c830b86

Please sign in to comment.