1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +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

@ -22,7 +22,7 @@ and a packet listener:
// user. We use an AndFilter to combine two other filters._
PacketFilter filter = new AndFilter(new PacketTypeFilter(Message.class),
new FromContainsFilter("mary@jivesoftware.com"));
// Assume we've created a XMPPConnection name "connection".
// Assume we've created an XMPPConnection name "connection".
// First, register a packet collector using the filter we created.
PacketCollector myCollector = connection.createPacketCollector(filter);