We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e37e5c commit 1511398Copy full SHA for 1511398
core/src/main/java/com/google/errorprone/bugpatterns/ConstantField.java
@@ -37,7 +37,7 @@
37
/** A {@link BugChecker}; see the associated {@link BugPattern} annotation for details. */
38
@BugPattern(
39
name = "ConstantField",
40
- summary = "Field name is CONSTANT_CASE, but field is not static and final",
+ summary = "Fields with CONSTANT_CASE names should be both static and final",
41
severity = SUGGESTION,
42
tags = BugPattern.StandardTags.STYLE)
43
public class ConstantField extends BugChecker implements VariableTreeMatcher {
0 commit comments