Drop unneeded type attribute

This commit is contained in:
jamesagnew 2020-01-07 08:49:38 -05:00
parent 630ab0afcb
commit 9c1a6e61e6
2 changed files with 3 additions and 1 deletions

View File

@ -209,7 +209,7 @@ public class Narrative extends BaseNarrative implements INarrative {
/** /**
* The actual narrative content, a stripped down version of XHTML. * The actual narrative content, a stripped down version of XHTML.
*/ */
@Child(name = "div", type = {XhtmlType.class}, order=1, min=1, max=1, modifier=false, summary=false) @Child(name = "div", type = {}, order=1, min=1, max=1, modifier=false, summary=false)
@Description(shortDefinition="Limited xhtml content", formalDefinition="The actual narrative content, a stripped down version of XHTML." ) @Description(shortDefinition="Limited xhtml content", formalDefinition="The actual narrative content, a stripped down version of XHTML." )
protected XhtmlNode div; protected XhtmlNode div;

View File

@ -24,12 +24,14 @@ package org.hl7.fhir.r5.model;
import java.io.IOException; import java.io.IOException;
import java.util.List; import java.util.List;
import ca.uhn.fhir.model.api.annotation.DatatypeDef;
import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.r5.model.StringType; import org.hl7.fhir.r5.model.StringType;
import org.hl7.fhir.utilities.xhtml.NodeType; import org.hl7.fhir.utilities.xhtml.NodeType;
import org.hl7.fhir.utilities.xhtml.XhtmlComposer; import org.hl7.fhir.utilities.xhtml.XhtmlComposer;
import org.hl7.fhir.utilities.xhtml.XhtmlNode; import org.hl7.fhir.utilities.xhtml.XhtmlNode;
public class XhtmlType extends Element { public class XhtmlType extends Element {
private Narrative place; private Narrative place;