# File lib/action_dispatch/middleware/body_proxy.rb, line 12
    def close
      return if @closed
      @closed = true
      begin
        @body.close if @body.respond_to? :close
      ensure
        @block.call
      end
    end