Skip to content

Commit f1f7955

Browse files
klueverError Prone Team
authored and
Error Prone Team
committed
Remove out of place .. Previously, the error message was:
``` Static variables should be named in UPPER_SNAKE_CASE if deeply immutable or lowerCamelCase if not., but autovarz_prefix is not; did you mean 'autovarzPrefix'? ``` PiperOrigin-RevId: 679563848
1 parent c885150 commit f1f7955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/google/errorprone/bugpatterns/MemberName.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public final class MemberName extends BugChecker
9191

9292
private static final String STATIC_VARIABLE_FINDING =
9393
"Static variables should be named in UPPER_SNAKE_CASE if deeply immutable or lowerCamelCase"
94-
+ " if not.";
94+
+ " if not";
9595

9696
private static final String INITIALISM_DETAIL =
9797
", with acronyms treated as words"

0 commit comments

Comments
 (0)