Get rid of missing parentheses warning.
This commit is contained in:
parent
9d2f3fbc27
commit
112870b537
|
@ -126,7 +126,7 @@ module BSON
|
||||||
def reject(&block)
|
def reject(&block)
|
||||||
clone = self.clone
|
clone = self.clone
|
||||||
return clone unless block_given?
|
return clone unless block_given?
|
||||||
clone.delete_if &block
|
clone.delete_if(&block)
|
||||||
end
|
end
|
||||||
|
|
||||||
def clear
|
def clear
|
||||||
|
|
Loading…
Reference in New Issue