load_target()
protected

No documentation available.

# File activerecord/lib/active_record/associations/association_collection.rb, line 252
        def load_target
          if [email protected]_record? || foreign_key_present
            begin
              if !loaded?
                if @target.is_a?(Array) && @target.any?
                  @target = find_target + @target.find_all {|t| t.new_record? }
                else
                  @target = find_target
                end
              end
            rescue ActiveRecord::RecordNotFound
              reset
            end
          end

          loaded if target
          target
        end