aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2010-11-18 17:32:59 -0300
committerEmilio Tagua <miloops@gmail.com>2010-11-19 19:09:01 -0300
commita12bb7140fa95b4a21b7680b7a05280ccdc612d6 (patch)
treea537c41fc1ce2a52625fc96e76ef732197a744ca /activerecord/lib/active_record/base.rb
parent72aa6f4f649a78b1cd8c7d4340fc143a782728db (diff)
downloadrails-a12bb7140fa95b4a21b7680b7a05280ccdc612d6.tar.gz
rails-a12bb7140fa95b4a21b7680b7a05280ccdc612d6.tar.bz2
rails-a12bb7140fa95b4a21b7680b7a05280ccdc612d6.zip
"there is no need to store this option just for initialization" José Valim dixit.
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rw-r--r--activerecord/lib/active_record/base.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index dd79a6e8d9..2b8474b6bf 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -411,10 +411,6 @@ module ActiveRecord #:nodoc:
class_attribute :store_full_sti_class
self.store_full_sti_class = true
- # Determine whether or not to use IdentityMap.
- class_attribute :identity_map
- self.identity_map = false
-
# Stores the default scope for the class
class_inheritable_accessor :default_scoping, :instance_writer => false
self.default_scoping = []