delay generating snapshots
This commit is contained in:
parent
8d2da0b701
commit
f8e88fb41a
|
@ -252,7 +252,7 @@ public class FHIRPathEngine {
|
|||
public FHIRPathEngine(IWorkerContext worker) {
|
||||
super();
|
||||
this.worker = worker;
|
||||
for (StructureDefinition sd : worker.allStructures()) {
|
||||
for (StructureDefinition sd : worker.getStructures()) {
|
||||
if (sd.getDerivation() == TypeDerivationRule.SPECIALIZATION && sd.getKind() != StructureDefinitionKind.LOGICAL)
|
||||
allTypes.put(sd.getName(), sd);
|
||||
if (sd.getDerivation() == TypeDerivationRule.SPECIALIZATION && sd.getKind() == StructureDefinitionKind.PRIMITIVETYPE) {
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -17,7 +17,7 @@
|
|||
|
||||
<properties>
|
||||
<hapi_fhir_version>4.1.0</hapi_fhir_version>
|
||||
<validator_test_case_version>1.0.20-SNAPSHOT</validator_test_case_version>
|
||||
<validator_test_case_version>1.0.21-SNAPSHOT</validator_test_case_version>
|
||||
</properties>
|
||||
|
||||
<artifactId>org.hl7.fhir.core</artifactId>
|
||||
|
|
Loading…
Reference in New Issue