fix for abstract types
This commit is contained in:
parent
d6444ea51a
commit
d3ba55018b
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue