Skip to content

Commit

Permalink
Make SmartBoolean and SmartString final classes
Browse files Browse the repository at this point in the history
  • Loading branch information
BenG49 committed Jan 8, 2024
1 parent 86d95d7 commit 7465429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/com/stuypulse/stuylib/network/SmartBoolean.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author Sam ([email protected])
*/
public class SmartBoolean implements BStream {
public final class SmartBoolean implements BStream {

/** The ID / Name for the value on {@link SmartDashboard}. */
private final int mHandle;
Expand Down
2 changes: 1 addition & 1 deletion src/com/stuypulse/stuylib/network/SmartString.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author Sam ([email protected])
*/
public class SmartString implements Supplier<String> {
public final class SmartString implements Supplier<String> {

/** The ID / Name for the value on {@link SmartDashboard}. */
private final int mHandle;
Expand Down

0 comments on commit 7465429

Please sign in to comment.