mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-07 21:38:15 +00:00
fix NPE
This commit is contained in:
parent
0b67029100
commit
9374e6fcd5
@ -414,7 +414,7 @@ public class TerminologyCache {
|
||||
for (ConceptSetFilterComponent f : cc.getFilter()) {
|
||||
if (!Utilities.noString(s))
|
||||
s = s + " & ";
|
||||
s = s + f.getProperty()+" "+f.getOp().toCode()+" "+f.getValue();
|
||||
s = s + f.getProperty()+" "+(f.hasOp() ? f.getOp().toCode() : "?")+" "+f.getValue();
|
||||
}
|
||||
return "from "+system+" where "+s+vsd;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user