mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-06 11:29:30 +00:00
fix problem with references
This commit is contained in:
parent
414640550e
commit
d92935894a
@ -72,7 +72,7 @@ public class ElementWrappers {
|
||||
@Override
|
||||
public List<PropertyWrapper> children() {
|
||||
if (list == null) {
|
||||
children = context.getProfileUtilities().getChildList(structure, definition);
|
||||
children = context.getProfileUtilities().getChildList(structure, definition, false, true);
|
||||
if (children.isEmpty() && !Utilities.noString(type)) {
|
||||
StructureDefinition sd = context.getWorker().fetchTypeDefinition(type);
|
||||
children = context.getProfileUtilities().getChildList(sd, sd.getSnapshot().getElementFirstRep());
|
||||
|
2
pom.xml
2
pom.xml
@ -19,7 +19,7 @@
|
||||
|
||||
<properties>
|
||||
<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>
|
||||
<maven_surefire_version>3.0.0-M4</maven_surefire_version>
|
||||
<jacoco_version>0.8.5</jacoco_version>
|
||||
|
Loading…
x
Reference in New Issue
Block a user