Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan jones committed Jan 23, 2025
1 parent c7c580d commit a881698
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions src/main/java/org/sciborgs1155/robot/elevator/Elevator.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,7 @@ public Command scoreLevel(Level level) {
return goTo(level.height.in(Meters));
}

/**
* Goes to an offset height above the level given to clean algae
* ONLY L2 and L3!
*/
/** Goes to an offset height above the level given to clean algae ONLY L2 and L3! */
public Command clean(Level level) {
if (level == Level.L1 || level == Level.L4) {
throw new RuntimeException("Not a valid algae height! Only L2 and L3!");
Expand Down
4 changes: 1 addition & 3 deletions src/main/java/org/sciborgs1155/robot/scoral/Scoral.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ public Scoral(SimpleMotor hardware) {
this.hardware = hardware;
}

/**
* Runs the motor to move a coral out of the scoral outwards.
*/
/** Runs the motor to move a coral out of the scoral outwards. */
public Command outtake() {
return run(() -> hardware.set(POWER)).withName("outtake");
}
Expand Down

0 comments on commit a881698

Please sign in to comment.