Skip to content

Commit 7a52176

Browse files
Minor cleaning stuff
1 parent aa36000 commit 7a52176

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/main/java/frc/trigon/robot/poseestimation/apriltagcamera/AprilTagCameraConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
import java.util.function.Function;
1414

15-
public class AprilTagCameraConstants {
15+
public class AprilTagCameraConstants {
1616
static final double MAXIMUM_DISTANCE_FROM_TAG_FOR_SOLVE_PNP_METERS = 2;
1717
static final int CALCULATE_YAW_ITERATIONS = 3;
1818
static final Pose2d[] EMPTY_POSE_LIST = new Pose2d[0];

src/main/java/frc/trigon/robot/poseestimation/apriltagcamera/io/AprilTagPhotonCameraIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import java.util.List;
1515

1616
public class AprilTagPhotonCameraIO extends AprilTagCameraIO {
17-
protected final PhotonCamera photonCamera;
17+
final PhotonCamera photonCamera;
1818

1919
public AprilTagPhotonCameraIO(String cameraName) {
2020
photonCamera = new PhotonCamera(cameraName);

src/main/java/frc/trigon/robot/poseestimation/poseestimator/PoseEstimator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ public Pose2d getCurrentEstimatedPose() {
6868
/**
6969
* @return the odometry's estimated pose of the robot, relative to the blue alliance's driver station right corner
7070
*/
71-
7271
public Pose2d getCurrentOdometryPose() {
7372
return poseEstimator6328.getOdometryPose();
7473
}

0 commit comments

Comments
 (0)