diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-01-22 00:30:45 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-01-22 00:30:45 -0200 |
commit | 4de3b3dac5bb66e1566ff89f1c2632bfbb25f043 (patch) | |
tree | 98fa40a0a890c5cff16cf1e76ae0d98be0ccc1ae /activerecord/lib | |
parent | 19bd2f227929c6ad3c1ea6d675d91f2165dec40b (diff) | |
download | rails-4de3b3dac5bb66e1566ff89f1c2632bfbb25f043.tar.gz rails-4de3b3dac5bb66e1566ff89f1c2632bfbb25f043.tar.bz2 rails-4de3b3dac5bb66e1566ff89f1c2632bfbb25f043.zip |
Whitespaces :scissors:
[ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/core.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb index 812f1ce5c5..63a1197a56 100644 --- a/activerecord/lib/active_record/core.rb +++ b/activerecord/lib/active_record/core.rb @@ -365,18 +365,18 @@ module ActiveRecord pk = self.class.primary_key @attributes[pk] = nil unless @attributes.key?(pk) - @aggregation_cache = {} - @association_cache = {} - @attributes_cache = {} - @previously_changed = {} - @changed_attributes = {} - @readonly = false - @destroyed = false - @marked_for_destruction = false - @new_record = true - @txn = nil - @_start_transaction_state = {} - @transaction = nil + @aggregation_cache = {} + @association_cache = {} + @attributes_cache = {} + @previously_changed = {} + @changed_attributes = {} + @readonly = false + @destroyed = false + @marked_for_destruction = false + @new_record = true + @txn = nil + @_start_transaction_state = {} + @transaction = nil end end end |