2

Can anybody say why suppression filter doesn't work? It still generates javadoc errors for Candidate_ file. checkstyle.xml `...

<module name="SuppressionFilter">
    <property name="file" value="C:/sts-projects/staffing4/trunk/config/suppressions.xml" />
</module>

<!-- Checks that a package-info.java file exists for each package. -->
<module name="JavadocPackage" />

...`

suppressions.xml

<suppressions>
<suppress checks="JavadocMethod" files="Candidate_.java" />
</suppressions>
Shikarn-O
  • 3,337
  • 7
  • 26
  • 27

1 Answers1

0

Could it be because checkstyle.xml above references suppressions.xml while the file mentioned below that is suppression.xml?

Raghuram
  • 51,854
  • 11
  • 110
  • 122