# File lib/restclient/request.rb, line 199
                def self.decode(content_encoding, body)
                        if content_encoding == 'gzip' and not body.empty?
                                Zlib::GzipReader.new(StringIO.new(body)).read
                        elsif content_encoding == 'deflate'
                                Zlib::Inflate.new.inflate(body)
                        else
                                body
                        end
                end