Merge pull request #336 from bjalon/patch-4

Update gettingstarted.md
This commit is contained in:
Florian Schmaus 2019-08-22 15:16:48 +02:00 committed by GitHub
commit afcc0935ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ XMPPTCPConnectionConfiguration config = XMPPTCPConnectionConfiguration.builder()
.setPort(8222)
.build();
AbstractXMPPConnection conn2 = **new** XMPPTCPConnection(config);
AbstractXMPPConnection conn2 = new XMPPTCPConnection(config);
conn2.connect().login();
```