We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 8.44 of Checkstyle has a backward-incompatible change:
<module name="JavadocMethod"> <property name="scope" value="protected"/> </module>
under the TreeWalker module, due to a breaking change in checkstyle 8.42 (8.44 is latest) this should now be
<module name="JavadocMethod"> <property name="accessModifiers" value="public, protected"/> </module>
The text was updated successfully, but these errors were encountered:
#440 Update style file to correct the backward incompatibility
7db3490
prmr
No branches or pull requests
Release 8.44 of Checkstyle has a backward-incompatible change:
under the TreeWalker module, due to a breaking change in checkstyle 8.42 (8.44 is latest) this should now be
The text was updated successfully, but these errors were encountered: