mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-15 20:12:04 +01:00
Missing comma between password and serviceName
This commit is contained in:
parent
5070b79968
commit
efa3f123f9
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ server. Below are code examples for making a connection:
|
||||||
|
|
||||||
```
|
```
|
||||||
// Create a connection to the jabber.org server.
|
// Create a connection to the jabber.org server.
|
||||||
AbstractXMPPConnection conn1 = **new** XMPPTCPConnection("username", "password" "jabber.org");
|
AbstractXMPPConnection conn1 = **new** XMPPTCPConnection("username", "password", "jabber.org");
|
||||||
conn1.connect();
|
conn1.connect();
|
||||||
|
|
||||||
// Create a connection to the jabber.org server on a specific port.
|
// Create a connection to the jabber.org server on a specific port.
|
||||||
|
|
Loading…
Reference in a new issue