strings as final
This commit is contained in:
parent
823d509c7d
commit
7c40313940
1 changed files with 2 additions and 2 deletions
|
@ -539,8 +539,8 @@ public class ConfigureMapMenu {
|
||||||
mp.put(ids[i], values[i]);
|
mp.put(ids[i], values[i]);
|
||||||
}
|
}
|
||||||
ArrayList<String> lst = new ArrayList<>(mp.keySet());
|
ArrayList<String> lst = new ArrayList<>(mp.keySet());
|
||||||
String systemLocale = ctx.getString(R.string.system_locale) + " (" + ctx.getString(R.string.system_locale_no_translate) + ")";
|
final String systemLocale = ctx.getString(R.string.system_locale) + " (" + ctx.getString(R.string.system_locale_no_translate) + ")";
|
||||||
String englishLocale = ctx.getString(R.string.lang_en);
|
final String englishLocale = ctx.getString(R.string.lang_en);
|
||||||
Collections.sort(lst, new Comparator<String>() {
|
Collections.sort(lst, new Comparator<String>() {
|
||||||
@Override
|
@Override
|
||||||
public int compare(String lhs, String rhs) {
|
public int compare(String lhs, String rhs) {
|
||||||
|
|
Loading…
Reference in a new issue