diff --git a/src/main/java/frc/subsystems/Arm.java b/src/main/java/frc/subsystems/Arm.java index f3a8d237..01a64d40 100644 --- a/src/main/java/frc/subsystems/Arm.java +++ b/src/main/java/frc/subsystems/Arm.java @@ -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; + } }