Skip to content

Commit

Permalink
ran spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterBiscuit committed Jan 13, 2024
1 parent 62420be commit 3979703
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/main/java/frc/subsystems/Arm.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
package frc.subsystems;

public interface Arm {
//gets the angle of the arm.
public default void getAngle() {
// gets the angle of the arm.
public default void getAngle() {}

}
//sets of the angle of the arm.
public default double setAngle() {
return 0;
}
// sets of the angle of the arm.
public default double setAngle() {
return 0;
}
}

0 comments on commit 3979703

Please sign in to comment.