-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make SmartBoolean and SmartString final classes
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|