From eebe67b11404956fb1890083455ad1e3802bc14d Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Tue, 8 Oct 2024 16:52:54 -0400 Subject: [PATCH] Adding value to ExampleSubsystem --- src/main/java/frc/robot/subsystems/ExampleSubsystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/frc/robot/subsystems/ExampleSubsystem.java b/src/main/java/frc/robot/subsystems/ExampleSubsystem.java index c3c71c4..b8c5e9d 100644 --- a/src/main/java/frc/robot/subsystems/ExampleSubsystem.java +++ b/src/main/java/frc/robot/subsystems/ExampleSubsystem.java @@ -4,6 +4,6 @@ import edu.wpi.first.wpilibj2.command.SubsystemBase; public class ExampleSubsystem extends SubsystemBase { public ExampleSubsystem() { - + int value = 42; } }