1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 06:12:05 +01:00

Use CharSequence instead of String for username

in XMPPTCPConnection's constructor.
This commit is contained in:
Florian Schmaus 2015-01-28 09:34:01 +01:00
parent 37081b2810
commit 612ca1ad9d

View file

@ -293,7 +293,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
* @param password * @param password
* @param serviceName * @param serviceName
*/ */
public XMPPTCPConnection(String username, String password, String serviceName) { public XMPPTCPConnection(CharSequence username, String password, String serviceName) {
this(XMPPTCPConnectionConfiguration.builder().setUsernameAndPassword(username, password).setServiceName( this(XMPPTCPConnectionConfiguration.builder().setUsernameAndPassword(username, password).setServiceName(
serviceName).build()); serviceName).build());
} }