-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Description
The examples from each module Javadoc have to be removed. For example the following:
* <p>
* To configure the check so that it check name
* but ignore {@code abstract} modifier:
* </p>
* <pre>
* <module name="AbstractClassName">
* <property name="ignoreModifier" value="true"/>
* </module>
* </pre>
* <p>Example:</p>
* <pre>
* class Example2 {
* abstract class AbstractFirst {}
* abstract class Second {} // violation 'must match pattern '\^Abstract\.\+\$''
* class AbstractThird {}
* class Fourth {}
* abstract class GeneratorFifth {} // violation 'must match pattern '\^Abstract\.\+\$''
* class GeneratorSixth {}
* }
* </pre>
An exclusion list from XdocJavadoc validation is created at #13357. This list should be removed and validation should be skipped for all modules once it's time to close this issue.