mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Fixed typo.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1984 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
b25380282c
commit
c7d92fe4f1
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ listener:<p>
|
|||
<div class="code"><pre>
|
||||
<font color="gray"><i>// Create a packet filter to listen for new messages from a particular</i></font>
|
||||
<font color="gray"><i>// user. We use an AndFilter to combine two other filters.</i></font>
|
||||
PacketFilter filter = new AndFilter(new PacketTypeTypeFilter(<b>Message.class</b>),
|
||||
PacketFilter filter = new AndFilter(new PacketTypeFilter(<b>Message.class</b>),
|
||||
new FromContainsFilter(<font color="green">"mary@jivesoftware.com"</font>));
|
||||
<font color="gray"><i>// Assume we've created an XMPPConnection name "connection".</i></font>
|
||||
|
||||
|
|
Loading…
Reference in a new issue