diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-08-06 10:16:12 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-08-06 10:16:12 -0700 |
commit | 71e0cf6d062f58f3349be53a7ac8421e2c3f488f (patch) | |
tree | 54f30822576b8c6057de30d572a641ba8d5aec5a /lib/arel | |
parent | 09a5847044e63bcc2b391720cf6bf084f03b4501 (diff) | |
download | rails-71e0cf6d062f58f3349be53a7ac8421e2c3f488f.tar.gz rails-71e0cf6d062f58f3349be53a7ac8421e2c3f488f.tar.bz2 rails-71e0cf6d062f58f3349be53a7ac8421e2c3f488f.zip |
removing unused code
Diffstat (limited to 'lib/arel')
-rw-r--r-- | lib/arel/engines/memory/relations/array.rb | 7 |
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 |