From e3c264c689430328effa2eedb3608c7b02e771e2 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Fri, 27 Jan 2006 22:04:36 +0000 Subject: [PATCH] Small fixes. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3382 b35dd754-fafc-0310-a699-88a17e54d16e --- documentation/processing.html | 2 +- .../org/jivesoftware/smackx/provider/VCardProvider.java | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/documentation/processing.html b/documentation/processing.html index d8879aeb4..671255b2f 100644 --- a/documentation/processing.html +++ b/documentation/processing.html @@ -26,7 +26,7 @@ Smack provides a flexible framework for processing incoming packets using two co A packet listener is used for event style programming, while a packet collector has a result queue of packets that you can do polling and blocking operations on. So, a packet listener is useful when you want to take some action whenever a packet happens to come in, -while a packet collector is useful when you want to wait for a specific packet to come +while a packet collector is useful when you want to wait for a specific packet to arrive. Packet collectors and listeners can be created using an XMPPConnection instance.

The org.jivesoftware.smack.filter.PacketFilter interface determines which diff --git a/source/org/jivesoftware/smackx/provider/VCardProvider.java b/source/org/jivesoftware/smackx/provider/VCardProvider.java index 1596edfd6..af45448b3 100644 --- a/source/org/jivesoftware/smackx/provider/VCardProvider.java +++ b/source/org/jivesoftware/smackx/provider/VCardProvider.java @@ -35,11 +35,9 @@ import java.util.List; import java.util.ArrayList; /** - * Created by IntelliJ IDEA. - * User: Gaston - * Date: Jun 18, 2005 - * Time: 1:00:57 AM - * To change this template use File | Settings | File Templates. + * vCard provider. + * + * @author Gaston Dombiak */ public class VCardProvider implements IQProvider {