Skip to content

Commit

Permalink
Case sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
tadgh committed Mar 5, 2024
1 parent 3751ba4 commit 95beaec
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -69,7 +69,7 @@ public class ${className}ResourceProvider extends
@OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE)
UriAndListParam theSearchForProfile,

#if ( $version == 'R5' )
#if ( $version == 'r5' )
@Description(shortDefinition="The language of the resource")
@OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE)
TokenAndListParam theResourceLanguage,
Expand Down Expand Up @@ -155,7 +155,7 @@ 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);
#if ( $version == 'R5' )
#if ( $version == 'r5' )
paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE, theResourceLanguage);
#end
paramMap.add("_has", theHas);
Expand Down

0 comments on commit 95beaec

Please sign in to comment.