fix NPE
This commit is contained in:
parent
0b67029100
commit
9374e6fcd5
|
@ -414,7 +414,7 @@ public class TerminologyCache {
|
||||||
for (ConceptSetFilterComponent f : cc.getFilter()) {
|
for (ConceptSetFilterComponent f : cc.getFilter()) {
|
||||||
if (!Utilities.noString(s))
|
if (!Utilities.noString(s))
|
||||||
s = 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;
|
return "from "+system+" where "+s+vsd;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue