Flowdock
method

replace_common_records_in_memory

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: CollectionAssociation
replace_common_records_in_memory(new_target, original_target) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/collection_association.rb, line 555
        def replace_common_records_in_memory(new_target, original_target)
          common_records = new_target & original_target
          common_records.each do |record|
            skip_callbacks = true
            replace_on_target(record, @target.index(record), skip_callbacks)
          end
        end
Register or log in to add new notes.