LibURL: Remove a stray newline
This commit is contained in:
parent
b6969fb82d
commit
fd01e80286
1 changed files with 0 additions and 1 deletions
|
|
@ -99,7 +99,6 @@ void URL::append_path(StringView path)
|
|||
bool URL::cannot_have_a_username_or_password_or_port() const
|
||||
{
|
||||
// A URL cannot have a username/password/port if its host is null or the empty string, or its scheme is "file".
|
||||
|
||||
return !m_data->host.has_value() || m_data->host->is_empty_host() || m_data->scheme == "file"sv;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue