Skip to content

Commit

Permalink
fixing query interpretation for connectors..
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Jul 17, 2014
1 parent 6166d4e commit a2b6ed1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -72,7 +72,7 @@ public <T> Filter interpret(ObjectFilter objectFilter, IcfNameMapper icfNameMapp
}

Filter nAryFilter = null;
if (filters.size() > 2) {
if (filters.size() >= 2) {
if (nAry instanceof AndFilter) {
nAryFilter = interpretAnd(filters.get(0), filters.subList(1, filters.size()));
} else if (nAry instanceof OrFilter) {
Expand Down

0 comments on commit a2b6ed1

Please sign in to comment.