1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:37:35 +00:00

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.
This commit is contained in:
Max Wipfli 2021-05-25 14:40:50 +02:00 committed by Andreas Kling
parent a603e69599
commit 0d41a7d39a
4 changed files with 0 additions and 108 deletions

View file

@ -7,7 +7,6 @@
#include "RunWindow.h"
#include <AK/LexicalPath.h>
#include <AK/URL.h>
#include <AK/URLParser.h>
#include <Applications/Run/RunGML.h>
#include <LibCore/File.h>
#include <LibCore/StandardPaths.h>