Skip to content

Commit

Permalink
Run spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala committed Sep 24, 2024
1 parent 1aabf02 commit ec3c46d
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,7 @@ public void resetPosition(
* @param poseMeters The position on the field that your robot is at.
*/
public void resetPosition(
Rotation2d gyroAngle,
Distance leftDistance,
Distance rightDistance,
Pose2d poseMeters) {
Rotation2d gyroAngle, Distance leftDistance, Distance rightDistance, Pose2d poseMeters) {
resetPosition(gyroAngle, leftDistance.in(Meters), rightDistance.in(Meters), poseMeters);
}

Expand Down Expand Up @@ -222,10 +219,7 @@ public void resetPosition(
* @param poseMeters The position on the field that your robot is at.
*/
public void resetPosition(
Rotation3d gyroAngle,
Distance leftDistance,
Distance rightDistance,
Pose3d poseMeters) {
Rotation3d gyroAngle, Distance leftDistance, Distance rightDistance, Pose3d poseMeters) {
resetPosition(gyroAngle, leftDistance.in(Meters), rightDistance.in(Meters), poseMeters);
}

Expand Down

0 comments on commit ec3c46d

Please sign in to comment.