[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

@@ -14,7 +14,7 @@ import edu.wpi.first.wpilibj.command.Subsystem;
* The Collector subsystem has one motor for the rollers, a limit switch for ball detection, a
* piston for opening and closing the claw, and a reed switch to check if the piston is open.
*/
public class Collector extends Subsystem implements AutoCloseable {
public class Collector extends Subsystem {
// Constants for some useful speeds
public static final double kForward = 1;
public static final double kStop = 0;