Skip to content

Commit 5a60024

Browse files
authored
Checkstyle: Replaced property scope with new accessModifiers for JavadocVariable check (#55)
As per upcoming changes in checkstyle/checkstyle#16049 for [JavadocVariable](https://checkstyle.org/checks/javadoc/javadocvariable.html#JavadocVariable) check, this PR replaces`scope` with new `accessModifiers` property. No further changes required in [pmd](https://github.com/pmd/pmd). >[!NOTE] >This PR should be merged after the release of checkstyle 10.22.0
2 parents 584fd6a + 66ded33 commit 5a60024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/net/sourceforge/pmd/pmd-checkstyle-config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</module>
3939
<module name="JavadocVariable">
4040
<property name="severity" value="warning"/>
41-
<property name="scope" value="protected"/>
41+
<property name="accessModifiers" value="protected"/>
4242
</module>
4343
<module name="NonEmptyAtclauseDescription">
4444
<property name="severity" value="warning"/>

0 commit comments

Comments
 (0)