# File lib/bullet/active_record52.rb, line 91
        def instantiate(result_set, &block)
          @bullet_eager_loadings = {}
          records = super

          if Bullet.start?
            @bullet_eager_loadings.each do |_klazz, eager_loadings_hash|
              objects = eager_loadings_hash.keys
              Bullet::Detector::UnusedEagerLoading.add_eager_loadings(objects, eager_loadings_hash[objects.first].to_a)
            end
          end
          records
        end