Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
Spotless
  • Loading branch information
Jetblackdragon committed Apr 8, 2024
1 parent 1ffcd32 commit 284b0a6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/frc/team2412/robot/util/AmpAlign.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,15 @@ private static Command ampAlign(DrivebaseSubsystem drivebaseSubsystem) {
return AutoBuilder.followPath(path);
}

public static Command ampPreset(
DrivebaseSubsystem drivebaseSubsystem) {
public static Command ampPreset(DrivebaseSubsystem drivebaseSubsystem) {
return new AlignCommand(drivebaseSubsystem);
}

private static class AlignCommand extends Command {
private final DrivebaseSubsystem drivebaseSubsystem;
private Command ampCommand = null;

public AlignCommand(
DrivebaseSubsystem drivebaseSubsystem) {
public AlignCommand(DrivebaseSubsystem drivebaseSubsystem) {
this.drivebaseSubsystem = drivebaseSubsystem;
addRequirements(drivebaseSubsystem);
}
Expand Down

0 comments on commit 284b0a6

Please sign in to comment.