LibURL: Remove a stray newline

This commit is contained in:
Shannon Booth 2026-01-22 11:50:29 +01:00 committed by Shannon Booth
parent b6969fb82d
commit fd01e80286

View file

@ -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;
}