diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/algebra/ordering.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/arel/algebra/ordering.rb b/lib/arel/algebra/ordering.rb index 8ed3e1e6e6..c1a4ef8b70 100644 --- a/lib/arel/algebra/ordering.rb +++ b/lib/arel/algebra/ordering.rb @@ -10,10 +10,6 @@ module Arel self end - def == other - super || (self.class === other && attribute == other.attribute) - end - def eval(row1, row2) (attribute.eval(row1) <=> attribute.eval(row2)) * direction end |