From bea7477053d6f01bd4a19295bda218a3289aff4c Mon Sep 17 00:00:00 2001 From: sigalrmp Date: Mon, 21 Aug 2023 19:31:08 -0400 Subject: [PATCH] spotless --- .../robot/subsystems/ExampleSubsystem.java | 1 - .../subsystems/ExampleSubsystemTest.java | 24 +++++++++---------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/main/java/org/sciborgs1155/robot/subsystems/ExampleSubsystem.java b/src/main/java/org/sciborgs1155/robot/subsystems/ExampleSubsystem.java index 7846275..72e75e5 100644 --- a/src/main/java/org/sciborgs1155/robot/subsystems/ExampleSubsystem.java +++ b/src/main/java/org/sciborgs1155/robot/subsystems/ExampleSubsystem.java @@ -6,7 +6,6 @@ import edu.wpi.first.wpilibj2.command.CommandBase; import edu.wpi.first.wpilibj2.command.SubsystemBase; -import java.lang.AutoCloseable; public class ExampleSubsystem extends SubsystemBase implements AutoCloseable { /** Creates a new ExampleSubsystem. */ diff --git a/src/test/java/org/sciborgs1155/robot/subsystems/ExampleSubsystemTest.java b/src/test/java/org/sciborgs1155/robot/subsystems/ExampleSubsystemTest.java index eb42c16..5b73e9e 100644 --- a/src/test/java/org/sciborgs1155/robot/subsystems/ExampleSubsystemTest.java +++ b/src/test/java/org/sciborgs1155/robot/subsystems/ExampleSubsystemTest.java @@ -5,19 +5,19 @@ public class ExampleSubsystemTest { - ExampleSubsystem exampleSubsystem; + ExampleSubsystem exampleSubsystem; - @BeforeEach - void setup() { - BasicPackage.setupHAL(); - exampleSubsystem = new ExampleSubsystem(); - } + @BeforeEach + void setup() { + BasicPackage.setupHAL(); + exampleSubsystem = new ExampleSubsystem(); + } - @Test - void test() {} + @Test + void test() {} - @AfterEach - void reset() throws Exception { - BasicPackage.closeSubsystem(exampleSubsystem); - } + @AfterEach + void reset() throws Exception { + BasicPackage.closeSubsystem(exampleSubsystem); + } }