summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorMax Wipfli <mail@maxwipfli.ch>2021-05-25 14:40:50 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-01 09:28:05 +0200
commit0d41a7d39aebde99bed69a54022e2036228f8af8 (patch)
tree8842115c3f24499c0c77cf3162f5527c1bcac2e9 /Userland/Libraries
parenta603e69599c6e2b7100711f2760a1c97d4af13dd (diff)
downloadserenity-0d41a7d39aebde99bed69a54022e2036228f8af8.zip
AK: Remove URLParser
This removes URLParser, because its two exposed functions, urlencode() and urldecode(), have been superseded by URL::percent_encode() and URL::percent_decode(). This is in preparation for the introduction of a new URL parser.
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibWeb/OutOfProcessWebView.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp b/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp
index a3a76b7266..81b878099d 100644
--- a/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp
+++ b/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp
@@ -7,7 +7,6 @@
#include "OutOfProcessWebView.h"
#include "WebContentClient.h"
#include <AK/String.h>
-#include <AK/URLParser.h>
#include <LibGUI/Application.h>
#include <LibGUI/Desktop.h>
#include <LibGUI/InputBox.h>