Update FHIRPathEngine.java
As mentioned on https://github.com/hapifhir/org.hl7.fhir.core/issues/703
This commit is contained in:
parent
f69a30421f
commit
7b24e9d4ee
|
@ -2367,7 +2367,7 @@ public class FHIRPathEngine {
|
|||
if (vs != null) {
|
||||
for (Base l : left) {
|
||||
if (Utilities.existsInList(l.fhirType(), "code", "string", "uri")) {
|
||||
if (worker.validateCode(terminologyServiceOptions , TypeConvertor.castToCoding(l), vs).isOk()) {
|
||||
if (worker.validateCode(terminologyServiceOptions.guessSystem() , TypeConvertor.castToCoding(l), vs).isOk()) {
|
||||
ans = true;
|
||||
}
|
||||
} else if (l.fhirType().equals("Coding")) {
|
||||
|
@ -5734,4 +5734,4 @@ public class FHIRPathEngine {
|
|||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue