Drop unneeded type attribute
This commit is contained in:
parent
630ab0afcb
commit
9c1a6e61e6
|
@ -209,7 +209,7 @@ public class Narrative extends BaseNarrative implements INarrative {
|
|||
/**
|
||||
* 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." )
|
||||
protected XhtmlNode div;
|
||||
|
||||
|
|
|
@ -24,12 +24,14 @@ package org.hl7.fhir.r5.model;
|
|||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import ca.uhn.fhir.model.api.annotation.DatatypeDef;
|
||||
import org.hl7.fhir.exceptions.FHIRException;
|
||||
import org.hl7.fhir.r5.model.StringType;
|
||||
import org.hl7.fhir.utilities.xhtml.NodeType;
|
||||
import org.hl7.fhir.utilities.xhtml.XhtmlComposer;
|
||||
import org.hl7.fhir.utilities.xhtml.XhtmlNode;
|
||||
|
||||
|
||||
public class XhtmlType extends Element {
|
||||
|
||||
private Narrative place;
|
||||
|
|
Loading…
Reference in New Issue