aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/group.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/group.rb')
-rw-r--r--lib/arel/nodes/group.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/arel/nodes/group.rb b/lib/arel/nodes/group.rb
index 57a7c579da..a7fa6f170d 100644
--- a/lib/arel/nodes/group.rb
+++ b/lib/arel/nodes/group.rb
@@ -1,11 +1,6 @@
module Arel
module Nodes
- class Group
- attr_accessor :expr
-
- def initialize expr
- @expr = expr
- end
+ class Group < Arel::Nodes::Unary
end
end
end