From bb380eea9c213e306fc387f574ee28a8d142bb88 Mon Sep 17 00:00:00 2001 From: bernhard Date: Mon, 26 Feb 2024 10:29:59 +0100 Subject: [PATCH] Issue #3050: remove the method GetRecommendedCharset() as it was unused and already deprecated. --- Kernel/Language.pm | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Kernel/Language.pm b/Kernel/Language.pm index 3b7b9000ed..97a98fc639 100644 --- a/Kernel/Language.pm +++ b/Kernel/Language.pm @@ -387,23 +387,6 @@ sub FormatTimeString { } -=head2 GetRecommendedCharset() - -DEPRECATED. Don't use this function any more, 'utf-8' is always the internal charset. - -Returns the recommended charset for frontend (based on translation -file or utf-8). - - my $Charset = $LanguageObject->GetRecommendedCharset(). - -=cut - -sub GetRecommendedCharset { - my $Self = shift; - - return 'utf-8'; -} - =head2 GetPossibleCharsets() Returns an array of possible charsets (based on translation file).