= private = protected
normalize!()
Destructive version of #normalize
# File lib/uri/generic.rb, line 1429 def normalize! if path && path == '' 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