class Addressable::URI

def reset_ivs

Other tags:
    Api: - private
def reset_ivs
  @scheme = nil
  @user = nil
  @normalized_scheme = NONE
  @normalized_user = NONE
  @uri_string = nil
  @hash = nil
  @userinfo = nil
  @normalized_userinfo = NONE
  @authority = nil
  @password = nil
  @normalized_authority = nil
  @port = nil
  @normalized_password = NONE
  @host = nil
  @normalized_host = nil
  @normalized_port = NONE
  @path = EMPTY_STR
  @normalized_path = nil
  @normalized_query = NONE
  @fragment = nil
  @normalized_fragment = NONE
  @query = nil
end