diff options
author | Thom May <thom@may.lt> | 2016-07-19 18:37:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-19 18:37:33 +0100 |
commit | 4c8bf05a397a2954db2ec519299097e6dbd73d3e (patch) | |
tree | c583110d264fffb143648eb257b8234700d42c10 /lib | |
parent | 9d235fd19641592ec987f1c66c88841f23dfd11d (diff) | |
parent | 06d3898d307168145130a3603a2121be6b4e19b3 (diff) | |
download | chef-zero-4c8bf05a397a2954db2ec519299097e6dbd73d3e.tar.gz |
Merge pull request #175 from andrewdotn/master
Fix attempted fall-through in case statement.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef_zero/solr/query/unary_operator.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/chef_zero/solr/query/unary_operator.rb b/lib/chef_zero/solr/query/unary_operator.rb index fc46c0d..a873932 100644 --- a/lib/chef_zero/solr/query/unary_operator.rb +++ b/lib/chef_zero/solr/query/unary_operator.rb @@ -16,8 +16,7 @@ module ChefZero def matches_doc?(doc) case @operator - when '-' - when 'NOT' + when '-', 'NOT' !operand.matches_doc?(doc) when '+' # TODO This operator uses relevance to eliminate other, unrelated @@ -28,8 +27,7 @@ module ChefZero def matches_values?(values) case @operator - when '-' - when 'NOT' + when '-', 'NOT' !operand.matches_values?(values) when '+' # TODO This operator uses relevance to eliminate other, unrelated |