Fix incorrect javadoc for missing modifier (#5561)

Fixing the explanation for missing = true / false, which was previously twisted
This commit is contained in:
Thomas Papke 2023-12-19 13:14:45 +01:00 committed by GitHub
parent db581dd158
commit ed012c2ce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ public interface IParam {
/**
* Sets the <code>:missing</code> qualifier for this parameter. Set this to <code>true</code>
* to indicate that the server should return resources with this value <p>populated</p>. Set this to
* <code>false</code> to indicate that the server should return resources with this value <b>missing</b>.
* to indicate that the server should return resources with this value <p>missing</p>. Set this to
* <code>false</code> to indicate that the server should return resources with this value <b>populated</b>.
*/
ICriterion<?> isMissing(boolean theMissing);
}