mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Use Locale.getDefault() to initialize the language
This commit is contained in:
parent
6a0e0f0f67
commit
efb206f7bd
1 changed files with 1 additions and 1 deletions
|
@ -597,7 +597,7 @@ public abstract class ConnectionConfiguration {
|
||||||
private CharSequence username;
|
private CharSequence username;
|
||||||
private String password;
|
private String password;
|
||||||
private Resourcepart resource;
|
private Resourcepart resource;
|
||||||
private Locale language = Locale.ENGLISH;
|
private Locale language = Locale.getDefault();
|
||||||
private boolean sendPresence = true;
|
private boolean sendPresence = true;
|
||||||
private ProxyInfo proxy;
|
private ProxyInfo proxy;
|
||||||
private CallbackHandler callbackHandler;
|
private CallbackHandler callbackHandler;
|
||||||
|
|
Loading…
Reference in a new issue