File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ class BadURIError < Error; end
181
181
# ["fragment", "top"]]
182
182
#
183
183
def self . split ( uri )
184
- RFC3986_PARSER . split ( uri )
184
+ DEFAULT_PARSER . split ( uri )
185
185
end
186
186
187
187
# Returns a new \URI object constructed from the given string +uri+:
@@ -195,7 +195,7 @@ def self.split(uri)
195
195
# if it may contain invalid URI characters.
196
196
#
197
197
def self . parse ( uri )
198
- RFC3986_PARSER . parse ( uri )
198
+ DEFAULT_PARSER . parse ( uri )
199
199
end
200
200
201
201
# Merges the given URI strings +str+
@@ -222,7 +222,7 @@ def self.parse(uri)
222
222
# # => #<URI::HTTP http://example.com/foo/bar>
223
223
#
224
224
def self . join ( *str )
225
- RFC3986_PARSER . join ( *str )
225
+ DEFAULT_PARSER . join ( *str )
226
226
end
227
227
228
228
#
You can’t perform that action at this time.
0 commit comments