From 74654296990d8184562bfa179d58d23de2ad48cb Mon Sep 17 00:00:00 2001 From: BenG49 Date: Sun, 7 Jan 2024 22:30:47 -0500 Subject: [PATCH] Make SmartBoolean and SmartString final classes --- src/com/stuypulse/stuylib/network/SmartBoolean.java | 2 +- src/com/stuypulse/stuylib/network/SmartString.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/stuypulse/stuylib/network/SmartBoolean.java b/src/com/stuypulse/stuylib/network/SmartBoolean.java index b99eac9e..5bec443b 100644 --- a/src/com/stuypulse/stuylib/network/SmartBoolean.java +++ b/src/com/stuypulse/stuylib/network/SmartBoolean.java @@ -16,7 +16,7 @@ * * @author Sam (sam.belliveau@gmail.com) */ -public class SmartBoolean implements BStream { +public final class SmartBoolean implements BStream { /** The ID / Name for the value on {@link SmartDashboard}. */ private final int mHandle; diff --git a/src/com/stuypulse/stuylib/network/SmartString.java b/src/com/stuypulse/stuylib/network/SmartString.java index 6f8b3d93..6179647d 100644 --- a/src/com/stuypulse/stuylib/network/SmartString.java +++ b/src/com/stuypulse/stuylib/network/SmartString.java @@ -16,7 +16,7 @@ * * @author Sam (sam.belliveau@gmail.com) */ -public class SmartString implements Supplier { +public final class SmartString implements Supplier { /** The ID / Name for the value on {@link SmartDashboard}. */ private final int mHandle;