Fix more javadoc errors

These worked with Java 21, but not with Java 11.
This commit is contained in:
Andreas Dangel
2024-03-08 08:53:02 +01:00
parent 1b53d71a19
commit ec0bfd1c4c
7 changed files with 18 additions and 25 deletions

View File

@@ -36,19 +36,17 @@ import com.github.stefanbirkner.systemlambda.SystemLambda;
* <p>Usage template:
*
* <pre>
* {@code
* class MyPMDTaskTest extends AbstractAntTestHelper {
* MyPMDTaskTest() {
* antTestScriptFilename = "mypmdtasktest.xml";
* }
*
* @Test
* &#64;Test
* void myTest() {
* executeTarget("testMyTarget");
* assertOutputContaining("Expected Violation Message");
* }
* }
* }
* </pre>
*
* @author Romain Pelisse &lt;belaran@gmail.com&gt;