summaryrefslogtreecommitdiff
path: root/AK/URL.h
diff options
context:
space:
mode:
authorsin-ack <sin-ack@users.noreply.github.com>2022-07-11 20:59:08 +0000
committerAndreas Kling <kling@serenityos.org>2022-07-12 23:11:35 +0200
commit604aac531c018fa4a2afd4e981bacbbdd961dcf7 (patch)
treeb89d1b935da4e7dba87b73607828b307eeeb24b0 /AK/URL.h
parent3f8060d8590b7c48e6afadfeb6398893240877ef (diff)
downloadserenity-604aac531c018fa4a2afd4e981bacbbdd961dcf7.zip
AK+Userland+Tests: Remove URL(char const*) constructor
The StringView(char const*) constructor is being removed, and there was only a few users of this left, which are also cleaned up in this commit.
Diffstat (limited to 'AK/URL.h')
-rw-r--r--AK/URL.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/AK/URL.h b/AK/URL.h
index b0006d6857..d177f5e286 100644
--- a/AK/URL.h
+++ b/AK/URL.h
@@ -38,10 +38,6 @@ public:
URL() = default;
URL(StringView);
- URL(char const* string)
- : URL(StringView(string))
- {
- }
URL(String const& string)
: URL(string.view())
{