fix for abstract types

This commit is contained in:
Grahame Grieve 2023-09-19 10:09:32 +10:00
parent d6444ea51a
commit d3ba55018b
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class TypeManager {
}
public void see(StructureDefinition sd) {
if (sd.getDerivation() == TypeDerivationRule.SPECIALIZATION) {
if (sd.getDerivation() != TypeDerivationRule.CONSTRAINT) {
String type = sd.getType();
List<StructureDefinition> types = typeDefinitions.get(type);
if (types == null) {