From ed012c2ce52461b0e80fcc7a0e8cc33434cb204d Mon Sep 17 00:00:00 2001 From: Thomas Papke Date: Tue, 19 Dec 2023 13:14:45 +0100 Subject: [PATCH] Fix incorrect javadoc for missing modifier (#5561) Fixing the explanation for missing = true / false, which was previously twisted --- .../src/main/java/ca/uhn/fhir/rest/gclient/IParam.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java index a3fd88a2c67..86a7190ee86 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IParam.java @@ -28,8 +28,8 @@ public interface IParam { /** * Sets the :missing qualifier for this parameter. Set this to true - * to indicate that the server should return resources with this value

populated

. Set this to - * false to indicate that the server should return resources with this value missing. + * to indicate that the server should return resources with this value

missing

. Set this to + * false to indicate that the server should return resources with this value populated. */ ICriterion isMissing(boolean theMissing); }