This commit is contained in:
Grahame Grieve 2020-02-07 10:30:38 +11:00
commit ff9bc8ec9c
1 changed files with 5 additions and 4 deletions

View File

@ -1720,7 +1720,11 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
ok = true; ok = true;
break; break;
} }
if (sd.getBaseDefinition() != null) {
sd = context.fetchResource(StructureDefinition.class, sd.getBaseDefinition()); sd = context.fetchResource(StructureDefinition.class, sd.getBaseDefinition());
} else {
sd = null;
}
} }
} }
} }
@ -4715,9 +4719,6 @@ private boolean isAnswerRequirementFulfilled(QuestionnaireItemComponent qItem, L
// time = System.nanoTime(); // time = System.nanoTime();
// check type invariants // check type invariants
if (definition.getId().equals("Composition.section:sectionResults")) {
System.out.println("!");
}
checkInvariants(hostContext, errors, profile, definition, resource, element, stack, false); checkInvariants(hostContext, errors, profile, definition, resource, element, stack, false);
if (definition.getFixed() != null) if (definition.getFixed() != null)
checkFixedValue(errors, stack.getLiteralPath(), element, definition.getFixed(), profile.getUrl(), definition.getSliceName(), null); checkFixedValue(errors, stack.getLiteralPath(), element, definition.getFixed(), profile.getUrl(), definition.getSliceName(), null);