CodeSystem30_50 fix

This commit is contained in:
markiantorno 2020-02-10 17:35:29 -05:00
parent 505a56a525
commit 4b6cff4429
1 changed files with 4 additions and 4 deletions

View File

@ -58,8 +58,8 @@ public class CodeSystem30_50 {
tgt.setVersionNeededElement((org.hl7.fhir.dstu3.model.BooleanType) VersionConvertor_30_50.convertType(src.getVersionNeededElement()));
if (src.hasContent())
tgt.setContent(convertCodeSystemContentMode(src.getContent()));
if (src.hasCountElement())
tgt.setCountElement((org.hl7.fhir.dstu3.model.UnsignedIntType) VersionConvertor_30_50.convertType(src.getCountElement()));
if (src.hasCount())
tgt.setCount(src.getCount());
if (src.hasFilter()) {
for (org.hl7.fhir.r5.model.CodeSystem.CodeSystemFilterComponent t : src.getFilter()) tgt.addFilter(convertCodeSystemFilterComponent(t));
}
@ -122,8 +122,8 @@ public class CodeSystem30_50 {
tgt.setVersionNeededElement((org.hl7.fhir.r5.model.BooleanType) VersionConvertor_30_50.convertType(src.getVersionNeededElement()));
if (src.hasContent())
tgt.setContent(convertCodeSystemContentMode(src.getContent()));
if (src.hasCountElement())
tgt.setCountElement((org.hl7.fhir.r5.model.UnsignedIntType) VersionConvertor_30_50.convertType(src.getCountElement()));
if (src.hasCount())
tgt.setCount(src.getCount());
if (src.hasFilter()) {
for (org.hl7.fhir.dstu3.model.CodeSystem.CodeSystemFilterComponent t : src.getFilter()) tgt.addFilter(convertCodeSystemFilterComponent(t));
}