COMMON: Remove unused functions in TranslationManager

There were leftovers from the transition to U32String.
This commit is contained in:
Thierry Crozat 2020-10-30 22:53:31 +00:00
parent 7a1b3983a2
commit 186e6142a0
2 changed files with 0 additions and 8 deletions

View File

@ -411,13 +411,6 @@ bool TranslationManager::checkHeader(File &in) {
return true;
}
String TranslationManager::convertBiDiString(const String &input) {
if (getCurrentLanguage() != "he") //TODO: modify when we'll support other RTL languages, such as Arabic and Farsi
return input;
return Common::convertBiDiString(input, HE_ISR);
}
U32String TranslationManager::convertBiDiString(const U32String &input) {
if (getCurrentLanguage() != "he") //TODO: modify when we'll support other RTL languages, such as Arabic and Farsi
return input;

View File

@ -174,7 +174,6 @@ public:
* For LTR (Left To Right) languages, returns the original input
* For RTL (Right To Left) languages, returns visual representation of a logical single-line input
*/
String convertBiDiString(const String &input);
U32String convertBiDiString(const U32String &input);
private: