From 8bea4d2b09e3c1f2d0ec388a5c8eec08da583327 Mon Sep 17 00:00:00 2001 From: Long Ma Date: Mon, 4 Mar 2024 09:55:16 -0700 Subject: [PATCH] fix unintended backported change --- .../src/main/resources/vm/jpa_resource_provider.vm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hapi-tinder-plugin/src/main/resources/vm/jpa_resource_provider.vm b/hapi-tinder-plugin/src/main/resources/vm/jpa_resource_provider.vm index 807fe45c5b03..f05deea578ad 100644 --- a/hapi-tinder-plugin/src/main/resources/vm/jpa_resource_provider.vm +++ b/hapi-tinder-plugin/src/main/resources/vm/jpa_resource_provider.vm @@ -69,10 +69,6 @@ public class ${className}ResourceProvider extends @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) UriAndListParam theSearchForProfile, - @Description(shortDefinition="Search the contents of the resource's data using a list") - @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LIST) - StringAndListParam theList, - #if ( $version == 'R5' ) @Description(shortDefinition="The language of the resource") @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE) @@ -159,7 +155,6 @@ public class ${className}ResourceProvider extends paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); - paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LIST, theList); #if ( $version == 'R5' ) paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE, theResourceLanguage); #end