Update DocumentReference30_50.java

This commit is contained in:
NSolooki 2022-09-20 12:41:20 -04:00 committed by GitHub
parent bef61d64f2
commit bf4854f434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,9 +89,9 @@ public class DocumentReference30_50 {
tgt.addSecurityLabel(CodeableConcept30_50.convertCodeableConcept(t));
for (org.hl7.fhir.r5.model.DocumentReference.DocumentReferenceContentComponent t : src.getContent())
tgt.addContent(convertDocumentReferenceContentComponent(t));
convertDocumentReferenceContextComponent(src, tgt.getContext());
for (org.hl7.fhir.r5.model.Reference t : src.getAuthor())
tgt.addAuthor(Reference30_50.convertReference(t));
convertDocumentReferenceContextComponent(src, tgt.getContext());
return tgt;
}