mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
[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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user