Merge pull request #724 from jkiddo/patch-3

Update FHIRPathEngine.java
This commit is contained in:
Grahame Grieve 2022-01-30 07:55:36 +11:00 committed by GitHub
commit 682eb2e0cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 {
}
}
}