Skip to content

Commit 0eec17a

Browse files
committed
Update config for JavadocMethodo
https://checkstyle.org/config_javadoc.html#JavadocMethod Available properties here seem to have changed: `validateThrows` seems to be the replacement for the two other throws-related properties that were previously here.
1 parent 157cf25 commit 0eec17a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

config/codeclimate_checkstyle.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,9 @@
127127
<module name="JavadocMethod">
128128
<property name="scope" value="public"/>
129129
<property name="allowMissingParamTags" value="true"/>
130-
<property name="allowMissingThrowsTags" value="true"/>
131130
<property name="allowMissingReturnTag" value="true"/>
132131
<property name="allowedAnnotations" value="Override, Test"/>
133-
<property name="allowThrowsTagsForSubclasses" value="true"/>
132+
<property name="validateThrows" value="false"/>
134133
</module>
135134
<module name="MethodName">
136135
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9_]*$"/>

0 commit comments

Comments
 (0)