fix args
This commit is contained in:
parent
fa7639189f
commit
79b5bbfbeb
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ public class TTSCommandPlayerImpl extends AbstractPrologCommandPlayer {
|
||||||
//#3344: Try Locale builder instead of constructor (only available from API 21)
|
//#3344: Try Locale builder instead of constructor (only available from API 21)
|
||||||
if (android.os.Build.VERSION.SDK_INT >= 21) {
|
if (android.os.Build.VERSION.SDK_INT >= 21) {
|
||||||
final String[] languageFields = language.split("\\_");
|
final String[] languageFields = language.split("\\_");
|
||||||
final Locale newLocale = new Locale.Builder().setLanguage("languageFields[0]").setScript("").setRegion("languageFields[1]").build();
|
final Locale newLocale = new Locale.Builder().setLanguage(languageFields[0]).setScript("").setRegion(languageFields[1]).build();
|
||||||
} else {
|
} else {
|
||||||
final Locale newLocale = new Locale(language);
|
final Locale newLocale = new Locale(language);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue