summaryrefslogtreecommitdiff
path: root/lib/net/http/response.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/http/response.rb')
-rw-r--r--lib/net/http/response.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/net/http/response.rb b/lib/net/http/response.rb
index cbe16ca205..08eaeb2cac 100644
--- a/lib/net/http/response.rb
+++ b/lib/net/http/response.rb
@@ -263,7 +263,6 @@ class Net::HTTPResponse
case v&.downcase
when 'deflate', 'gzip', 'x-gzip' then
self.delete 'content-encoding'
- had_content_length = self.delete 'content-length'
inflate_body_io = Inflater.new(@socket)
@@ -273,9 +272,6 @@ class Net::HTTPResponse
ensure
begin
inflate_body_io.finish
- if had_content_length
- self['content-length'] = inflate_body_io.bytes_inflated.to_s
- end
rescue => err
# Ignore #finish's error if there is an exception from yield
raise err if success
@@ -378,14 +374,6 @@ class Net::HTTPResponse
end
##
- # The number of bytes inflated, used to update the Content-Length of
- # the response.
-
- def bytes_inflated
- @inflate.total_out
- end
-
- ##
# Returns a Net::ReadAdapter that inflates each read chunk into +dest+.
#
# This allows a large response body to be inflated without storing the