[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:
Sam Carlberg
2025-09-09 00:19:00 -04:00
committed by GitHub
parent be72d543ad
commit 909f8a1dc4
5 changed files with 7 additions and 4 deletions

View File

@@ -27,7 +27,6 @@ public abstract class ClassSpecificLogger<T> {
// Linked hashmap to maintain insert order
private final Map<Sendable, SendableBuilder> m_sendables = new LinkedHashMap<>();
@SuppressWarnings("PMD.RedundantFieldInitializer")
private boolean m_disabled = false;
/**