Skip to content

Commit d298a7f

Browse files
committed
cops
1 parent 71e077a commit d298a7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ruby_http_client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def make_request(http, request)
182182
# - Request object
183183
def build_http(host, port)
184184
params = [host, port]
185-
params = params + @proxy_options.values_at(:host, :port, :user, :pass) unless @proxy_options.empty?
185+
params += @proxy_options.values_at(:host, :port, :user, :pass) unless @proxy_options.empty?
186186
add_ssl(Net::HTTP.new(*params))
187187
end
188188

0 commit comments

Comments
 (0)