Update gettingstarted.md

This commit is contained in:
Benjamin JALON 2019-08-04 14:35:04 +02:00 committed by GitHub
parent 3e74d11b45
commit f7a699af8a
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();
```