Skip to content

Commit

Permalink
Remove out of place .. Previously, the error message was:
Browse files Browse the repository at this point in the history
```
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
  • Loading branch information
kluever authored and Error Prone Team committed Sep 27, 2024
1 parent c885150 commit f1f7955
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public final class MemberName extends BugChecker

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

private static final String INITIALISM_DETAIL =
", with acronyms treated as words"
Expand Down

0 comments on commit f1f7955

Please sign in to comment.