handle xhtml:div type for old FHIR version

This commit is contained in:
Grahame Grieve 2024-04-03 20:12:28 +11:00
parent f654ae1d58
commit 1c98b06189
1 changed files with 2 additions and 0 deletions

View File

@ -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+"'");
}