mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-03 18:09:08 +00:00
fix in condition in FHIRPath engine
This commit is contained in:
parent
483e0a3e80
commit
d1c9de3d8b
@ -1906,8 +1906,10 @@ public class FHIRPathEngine {
|
||||
}
|
||||
|
||||
private List<Base> opIn(List<Base> left, List<Base> right) throws FHIRException {
|
||||
if (left.size() == 0 || right.size() == 0)
|
||||
if (left.size() == 0)
|
||||
return new ArrayList<Base>();
|
||||
if (right.size() == 0)
|
||||
return makeBoolean(false);
|
||||
boolean ans = true;
|
||||
for (Base l : left) {
|
||||
boolean f = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user