Skip to content

Commit

Permalink
fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gvaldez7206 committed Jan 27, 2024
1 parent 40a6a5a commit 0065eec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/frc/robot/subsystems/shooter/Shooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ public void setBottomMotor(double power) {
io.setBottomMotor(power);
}

/**
* Command for the shooter motors to run
*
* @return {@link Command} running the motor of the shooter

Check warning on line 46 in src/main/java/frc/robot/subsystems/shooter/Shooter.java

View workflow job for this annotation

GitHub Actions / Linting

[testtool] reported by reviewdog 🐶 Javadoc tag '@return' should be preceded with an empty line. Raw Output: /github/workspace/./src/main/java/frc/robot/subsystems/shooter/Shooter.java:46:0: warning: Javadoc tag '@return' should be preceded with an empty line. (com.puppycrawl.tools.checkstyle.checks.javadoc.RequireEmptyLineBeforeBlockTagGroupCheck)
*/
public Command runShooterMotor() {
return Commands.startEnd(() -> {
setTopMotor(0.5);
Expand Down

0 comments on commit 0065eec

Please sign in to comment.