From 582784d0cf9a1a06499ace22a0d5cf11b3dfa29a Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sun, 13 Aug 2023 08:49:04 +1200 Subject: [PATCH] AK: Remove unused ApplyPercentDecoding enum from URL class --- AK/URL.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/AK/URL.h b/AK/URL.h index a6b65a75ed..55ec4e1762 100644 --- a/AK/URL.h +++ b/AK/URL.h @@ -72,10 +72,6 @@ public: bool is_valid() const { return m_valid; } - enum class ApplyPercentDecoding { - Yes, - No - }; String const& scheme() const { return m_scheme; } ErrorOr username() const; ErrorOr password() const;