HADOOP-11869. Suppress ParameterNumber checkstyle violations for overridden methods. Contributed by Jonathan Eagles

This commit is contained in:
Chris Douglas 2017-05-18 21:27:46 -07:00
parent b4adc8392c
commit 009b9f3ebc

View File

@ -125,7 +125,9 @@
<!-- See http://checkstyle.sf.net/config_sizes.html --> <!-- See http://checkstyle.sf.net/config_sizes.html -->
<module name="LineLength"/> <module name="LineLength"/>
<module name="MethodLength"/> <module name="MethodLength"/>
<module name="ParameterNumber"/> <module name="ParameterNumber">
<property name="ignoreOverriddenMethods" value="true"/>
</module>
<!-- Checks for whitespace --> <!-- Checks for whitespace -->