Skip to content

Commit

Permalink
Fix Javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
CoffeeCoder1 committed May 23, 2024
1 parent f0c75b4 commit cd186a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
8 changes: 2 additions & 6 deletions src/main/java/frc/robot/commands/MechanismCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public static Command PrepareShoot(Arm arm, Head head, ShootingPosition position
* will finish when ready
* @param arm
* @param head
* @param position
* @param distance
*/
public static Command PrepareShoot(Arm arm, Head head, Supplier<Double> distance) {
return arm.SetTargets(distance)
Expand Down Expand Up @@ -156,7 +156,7 @@ public static Command PrepareShoot(XboxController operatorController, Arm arm, H
* @param operatorController
* @param arm
* @param head
* @param position
* @param distance
* @return
*/
public static Command PrepareShoot(XboxController operatorController, Arm arm, Head head, Supplier<Double> distance) {
Expand All @@ -171,8 +171,6 @@ public static Command PrepareShoot(XboxController operatorController, Arm arm, H
* subsystem
* @param head
* subsystem
* @param position
* position to shoot from
* @return Command
*/
public static Command Shoot(Arm arm, Head head) {
Expand Down Expand Up @@ -212,8 +210,6 @@ public static Command AutonomousShoot(Arm arm, Head head, Drivetrain drivetrain)
* subsystem
* @param head
* subsystem
* @param position
* position to shoot from
* @return Command
*/
//TODO: Shoot should not take in the position
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/frc/robot/subsystems/Drivetrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ public class Drivetrain extends SubsystemBase {

/**
* Initialize {@link SwerveDrive} with the directory provided.
*
* @param directory
* Directory of swerve drive config files.
*/
public Drivetrain() {
// Configure the Telemetry before creating the SwerveDrive to avoid unnecessary
Expand Down

0 comments on commit cd186a3

Please sign in to comment.