1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 09:09:38 +02:00

s/ a XMPP/ an XMPP/

This commit is contained in:
Florian Schmaus 2015-02-12 12:13:19 +01:00
parent a927d55bb1
commit 57c1b57b7c
32 changed files with 53 additions and 53 deletions

View file

@ -16,7 +16,7 @@ The following code snippet demonstrates how to create a new Chat with a user
and then send them a text message:
```
// Assume we've created a XMPPConnection name "connection"._
// Assume we've created an XMPPConnection name "connection"._
ChatManager chatmanager = connection.getChatManager();
Chat newChat = chatmanager.createChat("jsmith@jivesoftware.com", new MessageListener() {
public void processMessage(Chat chat, Message message) {
@ -72,7 +72,7 @@ when it happens. You can register a message listener to receive all future
messages as part of this handler.
```
_// Assume we've created a XMPPConnection name "connection"._
_// Assume we've created an XMPPConnection name "connection"._
ChatManager chatmanager = connection.getChatManager().addChatListener(
new ChatManagerListener() {
@Override