empty operator is no longer an error

This commit is contained in:
simon lehericey 2022-06-27 20:43:24 +02:00
parent 976e760045
commit 144b522773

View file

@ -3,5 +3,5 @@ class Logic::EmptyOperator < Logic::BinaryOperator
def type = :empty
def errors(_stable_ids = nil) = ['empty']
def errors(_stable_ids = nil) = []
end