mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[javac] Fix javadoc warnings (#8718)
```
> Task :javacPlugin:javadoc
/home/tav/frc/wpilib/allwpilib/javacPlugin/src/main/java/org/wpilib/javacplugin/OpModeAnnotationValidator.java:31: warning: invalid input: '<'
* <li>Name must be <= 32 characters
^
/home/tav/frc/wpilib/allwpilib/javacPlugin/src/main/java/org/wpilib/javacplugin/OpModeAnnotationValidator.java:32: warning: invalid input: '<'
* <li>Group must be <= 12 characters
^
/home/tav/frc/wpilib/allwpilib/javacPlugin/src/main/java/org/wpilib/javacplugin/OpModeAnnotationValidator.java:33: warning: invalid input: '<'
* <li>Description must be <= 64 characters
^
3 warnings
```
These weren't caught by the `docs:generateJavaDocs` task because the
javacPlugin docs aren't included there.
This commit is contained in:
@@ -28,9 +28,9 @@ import javax.tools.Diagnostic;
|
||||
* <p>Requirements:
|
||||
*
|
||||
* <ul>
|
||||
* <li>Name must be <= 32 characters
|
||||
* <li>Group must be <= 12 characters
|
||||
* <li>Description must be <= 64 characters
|
||||
* <li>Name must be <= 32 characters
|
||||
* <li>Group must be <= 12 characters
|
||||
* <li>Description must be <= 64 characters
|
||||
* </ul>
|
||||
*/
|
||||
public class OpModeAnnotationValidator implements TaskListener {
|
||||
|
||||
Reference in New Issue
Block a user