Project

General

Profile

Misc #13871 ยป remove-commentted-out-uri-http-initialize.patch

aycabta (aycabta .), 09/05/2017 04:49 PM

View differences:

lib/uri/http.rb
super(tmp)
end
=begin
#
# == Description
#
# Create a new URI::HTTP object from generic URI components as per
# RFC 2396. No HTTP-specific syntax checking (as per RFC 1738) is
# performed.
#
# Arguments are +scheme+, +userinfo+, +host+, +port+, +registry+, +path+,
# +opaque+, +query+ and +fragment+, in that order.
#
# Example:
#
# uri = URI::HTTP.new("http", nil, "www.example.com", nil, nil,
# "/path", nil, "query", "fragment")
#
#
# See also URI::Generic.new
#
def initialize(*arg)
super(*arg)
end
=end
#
# == Description
#
    (1-1/1)