# File lib/vcr/structs.rb, line 411
    def decompress
      self.class.decompress(body, content_encoding) { |new_body|
        self.body = new_body
        update_content_length_header
        delete_header('Content-Encoding')
      }
      return self
    end