Skip to content

Commit

Permalink
formatting :(
Browse files Browse the repository at this point in the history
  • Loading branch information
suryatho committed Jun 11, 2024
1 parent 33c49e2 commit 5f7b240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ public void periodic() {
.sorted(Comparator.comparingDouble(VisionObservation::timestamp))
.forEach(RobotState.getInstance()::addVisionObservation);
}
RobotState.getInstance()
.setDemoTagPose(demoTagPose);
RobotState.getInstance().setDemoTagPose(demoTagPose);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,8 @@ public void setAutoAlignGoal(
Supplier<Pose2d> poseSupplier,
Supplier<Translation2d> feedforwardSupplier,
boolean slowMode) {
currentDriveMode = DriveMode.AUTO_ALIGN;
autoAlignController = new AutoAlignController(poseSupplier, feedforwardSupplier, slowMode);
currentDriveMode = DriveMode.AUTO_ALIGN;
autoAlignController = new AutoAlignController(poseSupplier, feedforwardSupplier, slowMode);
}

/** Clears the current auto align goal. */
Expand Down

0 comments on commit 5f7b240

Please sign in to comment.