diff options
author | Jon Leighton <j@jonathanleighton.com> | 2011-08-29 23:04:50 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2011-08-29 23:05:26 +0100 |
commit | 92619e4f78e9417dbfa3e22acce25ff343f45f0b (patch) | |
tree | 0b64531eddab08872e7d0e56b9ab3775903cbe12 | |
parent | 04f7338ff4bd45f135a38a58b384790d24fb1fc3 (diff) | |
download | rails-92619e4f78e9417dbfa3e22acce25ff343f45f0b.tar.gz rails-92619e4f78e9417dbfa3e22acce25ff343f45f0b.tar.bz2 rails-92619e4f78e9417dbfa3e22acce25ff343f45f0b.zip |
Fix test failures on 1.8.7, since Object#initialize_dup is not defined there (and this call to super is no essential, so easiest to simply remove)
-rw-r--r-- | activerecord/lib/active_record/timestamp.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/timestamp.rb b/activerecord/lib/active_record/timestamp.rb index 6b8c52861e..cccac6ffd7 100644 --- a/activerecord/lib/active_record/timestamp.rb +++ b/activerecord/lib/active_record/timestamp.rb @@ -39,7 +39,6 @@ module ActiveRecord def initialize_dup(other) clear_timestamp_attributes - super end private |