[wpilibj] Fix warnings that are not unused variables or deprecation (#3161)

Fix all warnings given by intellisense that are not unused variables or deprecation.
This commit is contained in:
Thad House
2021-02-12 22:22:11 -08:00
committed by GitHub
parent c14b237757
commit 99b5ad9ebb
20 changed files with 43 additions and 35 deletions

View File

@@ -19,7 +19,7 @@ import org.junit.jupiter.api.Test;
public class ElevatorSimTest {
@Test
@SuppressWarnings("LocalVariableName")
@SuppressWarnings({"LocalVariableName", "resource"})
public void testStateSpaceSimWithElevator() {
var controller = new PIDController(10, 0, 0);