Fixed typo.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1984 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-07-14 14:10:14 +00:00 committed by mtucker
parent b25380282c
commit c7d92fe4f1
1 changed files with 1 additions and 1 deletions

View File

@ -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>