aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-08-06 10:16:12 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-08-06 10:16:12 -0700
commit71e0cf6d062f58f3349be53a7ac8421e2c3f488f (patch)
tree54f30822576b8c6057de30d572a641ba8d5aec5a /lib/arel/engines
parent09a5847044e63bcc2b391720cf6bf084f03b4501 (diff)
downloadrails-71e0cf6d062f58f3349be53a7ac8421e2c3f488f.tar.gz
rails-71e0cf6d062f58f3349be53a7ac8421e2c3f488f.tar.bz2
rails-71e0cf6d062f58f3349be53a7ac8421e2c3f488f.zip
removing unused code
Diffstat (limited to 'lib/arel/engines')
-rw-r--r--lib/arel/engines/memory/relations/array.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/arel/engines/memory/relations/array.rb b/lib/arel/engines/memory/relations/array.rb
index 7f881dd849..028f5c0269 100644
--- a/lib/arel/engines/memory/relations/array.rb
+++ b/lib/arel/engines/memory/relations/array.rb
@@ -12,13 +12,6 @@ module Arel
@attributes = nil
end
- def == other
- super ||
- Array === other &&
- array == other.array &&
- attribute_names_and_types == other.attribute_names_and_types
- end
-
def engine
@engine ||= Memory::Engine.new
end