1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

AK: Remove unused URL::scheme_requires_port

THis function does not seem to be used anywhere, and I cannot find any
spec equivalent for this function.
This commit is contained in:
Shannon Booth 2023-07-25 20:10:22 +12:00 committed by Tim Flynn
parent c8da880806
commit 7b3902e3d5
2 changed files with 0 additions and 6 deletions

View file

@ -190,11 +190,6 @@ bool URL::compute_validity() const
return true;
}
bool URL::scheme_requires_port(StringView scheme)
{
return (default_port_for_scheme(scheme) != 0);
}
u16 URL::default_port_for_scheme(StringView scheme)
{
if (scheme == "http")