compile fix + release notes
This commit is contained in:
parent
11e60c3825
commit
3d57a2b511
|
@ -0,0 +1,4 @@
|
|||
Validator
|
||||
* fix NPE bug logging terminology server calls
|
||||
* fix NPE bug validating logical models
|
||||
* fix problem with Type Name when validating against Logical Models
|
|
@ -114,7 +114,7 @@ public abstract class ParserBase {
|
|||
if(name.equals(sd.getType()) && (ns == null || ns.equals(FormatUtilities.FHIR_NS)) && !ToolingExtensions.hasExtension(sd, "http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace"))
|
||||
return sd;
|
||||
String sns = ToolingExtensions.readStringExtension(sd, "http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace");
|
||||
if ((name.equals(sd.getType()) || name.equals(sd.getName())) ) && ns != null && ns.equals(sns))
|
||||
if ((name.equals(sd.getType()) || name.equals(sd.getName())) && ns != null && ns.equals(sns))
|
||||
return sd;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue