java - Suppressionfilter doesn't work in checkstyle config file -


can why suppression filter doesn't work? still generates javadoc errors candidate_ file. checkstyle.xml `...

<module name="suppressionfilter">     <property name="file" value="c:/sts-projects/staffing4/trunk/config/suppressions.xml" /> </module>  <!-- checks package-info.java file exists each package. --> <module name="javadocpackage" /> 

...`

suppressions.xml

<suppressions> <suppress checks="javadocmethod" files="candidate_.java" /> </suppressions> 

could because checkstyle.xml above references suppressions.xml while file mentioned below suppression.xml?


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -