summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibLocale/Locale.h
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2023-01-19 13:18:12 -0500
committerLinus Groh <mail@linusgroh.de>2023-01-19 20:57:30 +0000
commitd901a9989dcc07512d599271ced6868af1e960ac (patch)
treea634602fc30d1d809b3b67e542b92d120f5b03ff /Userland/Libraries/LibLocale/Locale.h
parentbb4b6d8ce3ad648639fe1a2fc44ca7d5c499601d (diff)
downloadserenity-d901a9989dcc07512d599271ced6868af1e960ac.zip
LibLocale: Remove now-unused [LanguageID,LocaleID]::to_deprecated_string
Diffstat (limited to 'Userland/Libraries/LibLocale/Locale.h')
-rw-r--r--Userland/Libraries/LibLocale/Locale.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibLocale/Locale.h b/Userland/Libraries/LibLocale/Locale.h
index be09a66a61..e238f6b699 100644
--- a/Userland/Libraries/LibLocale/Locale.h
+++ b/Userland/Libraries/LibLocale/Locale.h
@@ -20,7 +20,6 @@ namespace Locale {
struct LanguageID {
ErrorOr<String> to_string() const;
- DeprecatedString to_deprecated_string() const;
bool operator==(LanguageID const&) const = default;
bool is_root { false };
@@ -59,7 +58,6 @@ using Extension = AK::Variant<LocaleExtension, TransformedExtension, OtherExtens
struct LocaleID {
ErrorOr<String> to_string() const;
- DeprecatedString to_deprecated_string() const;
template<typename ExtensionType>
Vector<Extension> remove_extension_type()