def self.instantiate_fixtures(object, fixture_set, load_instances = true, rails_3_2_compatibility_argument = true)
unless load_instances == true || load_instances == false
ActiveSupport::Deprecation.warn(
"ActiveRecord::Fixtures.instantiate_fixtures with parameters (object, fixture_set_name, fixture_set, load_instances = true) is deprecated and shall be removed from future releases. Use it with parameters (object, fixture_set, load_instances = true) instead (skip fixture_set_name).",
caller)
fixture_set = load_instances
load_instances = rails_3_2_compatibility_argument
end
instantiate_fixtures__with_new_arity(object, fixture_set, load_instances)
end