From a1224e0e80fe3261bab1ecf06e506e1742fdd62e Mon Sep 17 00:00:00 2001 From: Ethan Porter Date: Sat, 13 Jan 2024 12:58:49 -0500 Subject: [PATCH] Ran spotlessApply --- src/main/java/frc/robot/subsystems/Shooter.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/main/java/frc/robot/subsystems/Shooter.java b/src/main/java/frc/robot/subsystems/Shooter.java index 693d4af9..15a0af7a 100644 --- a/src/main/java/frc/robot/subsystems/Shooter.java +++ b/src/main/java/frc/robot/subsystems/Shooter.java @@ -1,7 +1,7 @@ package frc.robot.subsystems; public interface Shooter { - + // Sets enable(true/false) to be used for the motors. on=true and off=false public default void setEnabled(boolean isEnabled) {} @@ -9,13 +9,12 @@ public default void setEnabled(boolean isEnabled) {} public default boolean getEnabled() { return false; } -// Sets the voltage of the motors. + + // Sets the voltage of the motors. public default void setVoltage(double voltage) {} - -// gets the voltage of the motors. - public default double getVoltage(){ + + // gets the voltage of the motors. + public default double getVoltage() { return 0; } - - }