-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Milestone
Description
Started seeing some new javadoc warnings when upgrading from 5.0 -> 6.0
for data like:
...
"hash": {
"description": "Specifies the hash algorithm and value for the content",
"type": "object",
"properties": {
"algorithm": {
"description": "The hashing function used to compute the hash value",
"type": "string",
"enum": [ "sha256" ]
},
"value": {
"description": "The hash value for the content",
"type": "string"
}
},
"required": [ "algorithm", "value" ]
}
...
a constructor is created like:
/**
*
* @param value
* @param algorithm
*/
public Hash(Hash.Algorithm algorithm, String value) {
super();
this.algorithm = algorithm;
this.value = value;
}
Would it make sense to inject the description into the generated javadoc here so we don't get javadoc generation warnings (happens with Temurin Java11) like:
/home/.../Hash.java:44: warning: no description for @param
* @param value
^
eirnym
Metadata
Metadata
Assignees
Labels
No labels