prmr / Solitaire

Implementation of the Solitaire card game with JavaFX
GNU General Public License v2.0
26 stars 38 forks source link

Fix Checkstyle style sheet for version 8.44 #26

Closed prmr closed 6 months ago

prmr commented 3 years ago
<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>