mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
[build] Remove PMD.RedundantFieldInitializer rule (#8184)
Code readability is much more important than saving three bytes per redundantly-initialized field.
This commit is contained in:
@@ -33,7 +33,7 @@ public final class SmartDashboard {
|
||||
/** The executor for listener tasks; calls listener tasks synchronously from main thread. */
|
||||
private static final ListenerExecutor listenerExecutor = new ListenerExecutor();
|
||||
|
||||
private static boolean m_reported = false; // NOPMD redundant field initializer
|
||||
private static boolean m_reported = false;
|
||||
|
||||
static {
|
||||
setNetworkTableInstance(NetworkTableInstance.getDefault());
|
||||
|
||||
Reference in New Issue
Block a user