Skip to content

Commit 85e1499

Browse files
committed
Use PARSER instead of DEFAULT_PARSER in URI.join
I changed to use `PARSER` instead of `DEFAULT_PARSER` with #161, but I missed to fix `URi.join`. This PR fixes it.
1 parent c7fd513 commit 85e1499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/uri/common.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def self.parse(uri)
271271
# # => #<URI::HTTP http://example.com/foo/bar>
272272
#
273273
def self.join(*str)
274-
DEFAULT_PARSER.join(*str)
274+
PARSER.join(*str)
275275
end
276276

277277
#

0 commit comments

Comments
 (0)