Remove copypasta

This commit is contained in:
androiddevkotlin 2021-04-19 20:02:59 +03:00
parent ed8b9973a9
commit d62c288e4a

View file

@ -102,10 +102,7 @@ public class FileNameTranslationHelper {
wikiVoyageName = formattedName; wikiVoyageName = formattedName;
} }
String wikiVoyageWord = ctx.getString(R.string.shared_string_wikivoyage); String wikiVoyageWord = ctx.getString(R.string.shared_string_wikivoyage);
int index = wikiVoyageWord.indexOf("(");
if (index >= 0) {
return ctx.getString(R.string.ltr_or_rtl_combine_via_space, wikiVoyageName, wikiVoyageWord.substring(0, index).trim());
}
return ctx.getString(R.string.ltr_or_rtl_combine_via_space, wikiVoyageName, wikiVoyageWord); return ctx.getString(R.string.ltr_or_rtl_combine_via_space, wikiVoyageName, wikiVoyageWord);
} }