fix problem with references

This commit is contained in:
Grahame Grieve 2021-01-14 13:34:34 +11:00
parent 414640550e
commit d92935894a
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ public class ElementWrappers {
@Override @Override
public List<PropertyWrapper> children() { public List<PropertyWrapper> children() {
if (list == null) { if (list == null) {
children = context.getProfileUtilities().getChildList(structure, definition); children = context.getProfileUtilities().getChildList(structure, definition, false, true);
if (children.isEmpty() && !Utilities.noString(type)) { if (children.isEmpty() && !Utilities.noString(type)) {
StructureDefinition sd = context.getWorker().fetchTypeDefinition(type); StructureDefinition sd = context.getWorker().fetchTypeDefinition(type);
children = context.getProfileUtilities().getChildList(sd, sd.getSnapshot().getElementFirstRep()); children = context.getProfileUtilities().getChildList(sd, sd.getSnapshot().getElementFirstRep());

View File

@ -19,7 +19,7 @@
<properties> <properties>
<hapi_fhir_version>5.1.0</hapi_fhir_version> <hapi_fhir_version>5.1.0</hapi_fhir_version>
<validator_test_case_version>1.1.56</validator_test_case_version> <validator_test_case_version>1.1.57-SNAPSHOT</validator_test_case_version>
<junit_jupiter_version>5.6.2</junit_jupiter_version> <junit_jupiter_version>5.6.2</junit_jupiter_version>
<maven_surefire_version>3.0.0-M4</maven_surefire_version> <maven_surefire_version>3.0.0-M4</maven_surefire_version>
<jacoco_version>0.8.5</jacoco_version> <jacoco_version>0.8.5</jacoco_version>