summaryrefslogtreecommitdiff
path: root/lib/rubygems/request/https_pool.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/request/https_pool.rb')
-rw-r--r--lib/rubygems/request/https_pool.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/rubygems/request/https_pool.rb b/lib/rubygems/request/https_pool.rb
index 1236079b7d..cb1d4b59b6 100644
--- a/lib/rubygems/request/https_pool.rb
+++ b/lib/rubygems/request/https_pool.rb
@@ -1,11 +1,10 @@
# frozen_string_literal: true
-class Gem::Request::HTTPSPool < Gem::Request::HTTPPool # :nodoc:
+class Gem::Request::HTTPSPool < Gem::Request::HTTPPool # :nodoc:
private
def setup_connection(connection)
Gem::Request.configure_connection_for_https(connection, @cert_files)
super
end
-
end