= private = protected
normalize!()
Destructive version of #normalize
# File lib/uri/generic.rb, line 1307 def normalize! if path&.empty? set_path('/') end if scheme && scheme != scheme.downcase set_scheme(self.scheme.downcase) end if host && host != host.downcase set_host(self.host.downcase) end end