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

AK: Remove unused ApplyPercentDecoding enum from URL class

This commit is contained in:
Shannon Booth 2023-08-13 08:49:04 +12:00 committed by Andrew Kaster
parent 9d60f23abc
commit 582784d0cf

View file

@ -72,10 +72,6 @@ public:
bool is_valid() const { return m_valid; } bool is_valid() const { return m_valid; }
enum class ApplyPercentDecoding {
Yes,
No
};
String const& scheme() const { return m_scheme; } String const& scheme() const { return m_scheme; }
ErrorOr<String> username() const; ErrorOr<String> username() const;
ErrorOr<String> password() const; ErrorOr<String> password() const;