Skip to content

Commit

Permalink
Kill dead comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AceiusRedshift committed Mar 5, 2024
1 parent e1c69c5 commit fa3e407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/main/java/frc/robot/commands/AimAtTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ public class AimAtTag extends Command {
*
* @param drivetrain the drivetrain of the robot
* @param vision the vision subsystem of the robot
* @param tagID the numerical ID of the the tag to turn to, -1 for
* best tag
* @param chassisDriveControl collection of inputs for driving
* @param tagID the numerical ID of the tag to turn to, -1 for best tag
*/
public AimAtTag(SwerveDrivetrain drivetrain, Vision vision, int tagID, ChassisDriveInputs chassisDriveInputs) {
this.drivetrain = drivetrain;
Expand Down
4 changes: 1 addition & 3 deletions src/main/java/frc/robot/commands/FollowTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@ public class FollowTag extends Command {
*
* @param drivetrain the drivetrain of the robot
* @param vision the vision subsystem of the robot
* @param tagID the numerical ID of the the tag to follow, -1 for best tag
* @param tagID the numerical ID of the tag to follow, -1 for best tag
* @param targetDistanceToTag the target distance away from the tag to be in meters
* @param loseTagAfterSeconds how long to wait before giving up on rediscover
* tag, set to null to never finish
*/
public FollowTag(SwerveDrivetrain drivetrain, Vision vision, int tagID, Transform2d targetDistanceToTag) {
this.drivetrain = drivetrain;
Expand Down

0 comments on commit fa3e407

Please sign in to comment.