mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-08 14:05:02 +00:00
Omit if set to false
This commit is contained in:
parent
669cf05b30
commit
3fd5f7d6d4
@ -512,7 +512,8 @@ public class SearchParameterMap implements Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Contained mode
|
//Contained mode
|
||||||
if (getSearchContainedMode() != null) {
|
//For some reason, instead of null here, we default to false. That said, ommitting it is identical to setting it to false.
|
||||||
|
if (getSearchContainedMode() != SearchContainedModeEnum.FALSE) {
|
||||||
addUrlParamSeparator(b);
|
addUrlParamSeparator(b);
|
||||||
b.append(Constants.PARAM_CONTAINED);
|
b.append(Constants.PARAM_CONTAINED);
|
||||||
b.append("=");
|
b.append("=");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user