setPort accept integer only

changed string to int. setPort function is only accepting integer.
This commit is contained in:
Cem Yabansu 2017-03-27 18:00:38 +03:00 committed by GitHub
parent 08c228ef99
commit 430cfa0ec5
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ XMPPTCPConnectionConfiguration config = XMPPTCPConnectionConfiguration.builder()
.setUsernameAndPassword("username", "password")
.setXmppDomain("jabber.org")
.setHost("earl.jabber.org")
.setPort("8222")
.setPort(8222)
.build();
AbstractXMPPConnection conn2 = **new** XMPPTCPConnection(config);