aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorJosh Kalderimis <josh.kalderimis@gmail.com>2011-05-09 22:13:25 +0200
committerJosh Kalderimis <josh.kalderimis@gmail.com>2011-05-09 22:13:25 +0200
commitd9f95c76a43fc81d9c478c594fc847bc4adf0c75 (patch)
treefa2fb699c955ed3d7d98e5725894b3959dbec62b /activerecord/lib
parent5b4849598a2cd3c9aaa3b73fcf14ec90fc56f879 (diff)
downloadrails-d9f95c76a43fc81d9c478c594fc847bc4adf0c75.tar.gz
rails-d9f95c76a43fc81d9c478c594fc847bc4adf0c75.tar.bz2
rails-d9f95c76a43fc81d9c478c594fc847bc4adf0c75.zip
removed an unneed AS::Concern from AR::IdentityMap
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/identity_map.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/identity_map.rb b/activerecord/lib/active_record/identity_map.rb
index f88ead9ca0..cad3865f03 100644
--- a/activerecord/lib/active_record/identity_map.rb
+++ b/activerecord/lib/active_record/identity_map.rb
@@ -15,7 +15,6 @@ module ActiveRecord
# IdentityMap is disabled by default.
#
module IdentityMap
- extend ActiveSupport::Concern
class << self
def enabled=(flag)
@@ -53,7 +52,7 @@ module ActiveRecord
if record.is_a?(klass)
ActiveSupport::Notifications.instrument("identity.active_record",
- :line => "From Identity Map (id: #{primary_key})",
+ :line => "From Identity Map (id: #{primary_key})",
:name => "#{klass} Loaded",
:connection_id => object_id)