Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
PGgit08 committed Jan 9, 2025
1 parent f112281 commit fe244ad
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main/java/frc/robot/utils/HolonomicController.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
import edu.wpi.first.math.controller.PIDController;

public class HolonomicController {
private final PIDController _xController = new PIDController(0, 0, 0);
private final PIDController _yController = new PIDController(0, 0, 0);
private final PIDController _headingController = new PIDController(0, 0, 0);


private final PIDController _xController = new PIDController(0, 0, 0);
private final PIDController _yController = new PIDController(0, 0, 0);
private final PIDController _headingController = new PIDController(0, 0, 0);
}

0 comments on commit fe244ad

Please sign in to comment.