[ruby/uri] Use DEFAULT_PARSER at split, parse, join

https://github.com/ruby/uri/commit/28af4e155a
This commit is contained in:
Hiroshi SHIBATA 2024-08-05 16:35:53 +09:00 коммит произвёл git
Родитель b59cbcf183
Коммит a82976bc90
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -181,7 +181,7 @@ module URI
# ["fragment", "top"]]
#
def self.split(uri)
RFC3986_PARSER.split(uri)
DEFAULT_PARSER.split(uri)
end
# Returns a new \URI object constructed from the given string +uri+:
@ -195,7 +195,7 @@ module URI
# if it may contain invalid URI characters.
#
def self.parse(uri)
RFC3986_PARSER.parse(uri)
DEFAULT_PARSER.parse(uri)
end
# Merges the given URI strings +str+
@ -222,7 +222,7 @@ module URI
# # => #<URI::HTTP http://example.com/foo/bar>
#
def self.join(*str)
RFC3986_PARSER.join(*str)
DEFAULT_PARSER.join(*str)
end
#