aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/ordering.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/ordering.rb')
-rw-r--r--lib/arel/nodes/ordering.rb16
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/arel/nodes/ordering.rb b/lib/arel/nodes/ordering.rb
index 0a3621cf54..efb4d18ae4 100644
--- a/lib/arel/nodes/ordering.rb
+++ b/lib/arel/nodes/ordering.rb
@@ -1,20 +1,6 @@
module Arel
module Nodes
- class Ordering < Arel::Nodes::Binary
- alias :expr :left
- alias :direction :right
-
- def initialize expr, direction = :asc
- super
- end
-
- def ascending?
- direction == :asc
- end
-
- def descending?
- direction == :desc
- end
+ class Ordering < Unary
end
end
end