aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/dirty.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-12-28 20:53:58 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-12-28 20:53:58 +0100
commit0efec64520d5153e5a961f9a759883656b83bb53 (patch)
tree31bc504daa1318cb73659e7df01c8ab885e3495f /activerecord/lib/active_record/dirty.rb
parent66ee5890c5f21995b7fe0c486547f1287afe2b55 (diff)
parenta2270ef2594b97891994848138614657363f2806 (diff)
downloadrails-0efec64520d5153e5a961f9a759883656b83bb53.tar.gz
rails-0efec64520d5153e5a961f9a759883656b83bb53.tar.bz2
rails-0efec64520d5153e5a961f9a759883656b83bb53.zip
Merge branch 'master' of git@github.com:rails/rails
Diffstat (limited to 'activerecord/lib/active_record/dirty.rb')
-rw-r--r--activerecord/lib/active_record/dirty.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/dirty.rb b/activerecord/lib/active_record/dirty.rb
index a1760875ba..4c899f58e5 100644
--- a/activerecord/lib/active_record/dirty.rb
+++ b/activerecord/lib/active_record/dirty.rb
@@ -174,7 +174,7 @@ module ActiveRecord
alias_attribute_without_dirty(new_name, old_name)
DIRTY_SUFFIXES.each do |suffix|
module_eval <<-STR, __FILE__, __LINE__+1
- def #{new_name}#{suffix}; self.#{old_name}#{suffix}; end
+ def #{new_name}#{suffix}; self.#{old_name}#{suffix}; end # def subject_changed?; self.title_changed?; end
STR
end
end