aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-06-11 13:41:48 -0500
committerJoshua Peek <josh@joshpeek.com>2009-06-11 13:41:48 -0500
commit8f7c657f4b1c037348b24f0b9dd1e45099fbc760 (patch)
treee63be1eab2f2b8324475077eec71a42bcc591582 /activerecord
parentc4e440b1d2fa288490f550321cfeeb952264762f (diff)
downloadrails-8f7c657f4b1c037348b24f0b9dd1e45099fbc760.tar.gz
rails-8f7c657f4b1c037348b24f0b9dd1e45099fbc760.tar.bz2
rails-8f7c657f4b1c037348b24f0b9dd1e45099fbc760.zip
Move observing notify helper into AMo
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/callbacks.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb
index 36f5f2ce47..01e41c04df 100644
--- a/activerecord/lib/active_record/callbacks.rb
+++ b/activerecord/lib/active_record/callbacks.rb
@@ -353,10 +353,5 @@ module ActiveRecord
return result
end
-
- def notify(method) #:nodoc:
- self.class.changed
- self.class.notify_observers(method, self)
- end
end
end