handle xhtml:div type for old FHIR version
This commit is contained in:
parent
f654ae1d58
commit
1c98b06189
|
@ -2628,6 +2628,8 @@ public boolean hasTarget() {
|
|||
return "unsignedInt";
|
||||
if ("xsd:anyURI".equalsIgnoreCase(s))
|
||||
return "uri";
|
||||
if ("xhtml:div".equalsIgnoreCase(s))
|
||||
return "xhtml";
|
||||
|
||||
throw new Error("Unknown xml type '"+s+"'");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue