* lib/net/http.rb: removed unused variable. It's removed at r13648.

[fix GH-1022] Patch by @nkondratyev

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-09-25 01:07:30 +00:00
parent a45ec9c6e5
commit 08b54fbd0d
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Sep 25 10:07:25 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* lib/net/http.rb: removed unused variable. It's removed at r13648.
[fix GH-1022] Patch by @nkondratyev
Fri Sep 25 09:48:27 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* gems/bundled_gems: upgrade to minitest-5.8.1

View File

@ -656,7 +656,6 @@ module Net #:nodoc:
@use_ssl = false
@ssl_context = nil
@ssl_session = nil
@enable_post_connection_check = true
@sspi_enabled = false
SSL_IVNAMES.each do |ivname|
instance_variable_set ivname, nil
@ -1579,4 +1578,3 @@ require 'net/http/responses'
require 'net/http/proxy_delta'
require 'net/http/backward'