Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
Issue checkstyle#4801: fix WeakerAccess can be private idea violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimfadora committed Jul 31, 2017
1 parent bb287e4 commit 69629f5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -420,7 +420,7 @@ protected final void logLoadError(Token ident) {
* @param ast the tree node for the method or constructor.
* @return True if this method or constructor doesn't need Javadoc.
*/
protected boolean isMissingJavadocAllowed(final DetailAST ast) {
private boolean isMissingJavadocAllowed(final DetailAST ast) {
return allowMissingJavadoc
|| allowMissingPropertyJavadoc
&& (CheckUtils.isSetterMethod(ast) || CheckUtils.isGetterMethod(ast))
Expand Down

0 comments on commit 69629f5

Please sign in to comment.