good morning!!!!

Skip to content
Snippets Groups Projects
Commit 3c6c2d29 authored by José Carlos Nieto's avatar José Carlos Nieto
Browse files

Fix Empty() method on Cond.

parent cfbf7b4e
No related branches found
No related tags found
No related merge requests found
......@@ -187,9 +187,9 @@ func (c Cond) Operator() CompoundOperator {
// Empty returns false if there are no conditions.
func (c Cond) Empty() bool {
for range c {
return true
return false
}
return false
return true
}
type rawValue struct {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment