Skip to content

Commit 38cb08a

Browse files
author
Grahame Grieve
committed
fix bug in SearchParamType.resource
1 parent 333395e commit 38cb08a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/Enumerations.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -18040,9 +18040,9 @@ public String toCode(SearchParamType code) {
1804018040
if (code == SearchParamType.URI)
1804118041
return "uri";
1804218042
if (code == SearchParamType.SPECIAL)
18043-
return "resource";
18044-
if (code == SearchParamType.RESOURCE)
1804518043
return "special";
18044+
if (code == SearchParamType.RESOURCE)
18045+
return "resource";
1804618046
return "?";
1804718047
}
1804818048
public String toSystem(SearchParamType code) {

0 commit comments

Comments
 (0)