method

clear_attribute_changes

clear_attribute_changes(attr_names)
public

No documentation available.

# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 70
      def clear_attribute_changes(attr_names)
        super
        attr_names.each do |attr_name|
          clear_attribute_change(attr_name)
        end
      end