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

AK+LibWeb: Remove URL::to_string_encoded()

This replaces URL::to_string_encoded() with to_string() and removes the
former, since they are now equivalent.
This commit is contained in:
Max Wipfli 2021-06-01 11:11:05 +02:00 committed by Andreas Kling
parent a9114be1b8
commit 33396494f6
3 changed files with 3 additions and 4 deletions

View file

@ -79,9 +79,7 @@ public:
String serialize(ExcludeFragment = ExcludeFragment::No) const;
String serialize_for_display() const;
String to_string() const { return serialize(); }
String to_string_encoded() const { return serialize(); }
bool equals(URL const& other, ExcludeFragment = ExcludeFragment::No) const;