Return-Path: Delivered-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Received: (qmail 28096 invoked from network); 12 Oct 2009 14:32:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Oct 2009 14:32:17 -0000 Received: (qmail 9837 invoked by uid 500); 12 Oct 2009 14:32:17 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 9754 invoked by uid 500); 12 Oct 2009 14:32:17 -0000 Mailing-List: contact solr-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-commits@lucene.apache.org Received: (qmail 9745 invoked by uid 99); 12 Oct 2009 14:32:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Oct 2009 14:32:17 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Oct 2009 14:32:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7A1CD2388874; Mon, 12 Oct 2009 14:31:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r824359 - /lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java Date: Mon, 12 Oct 2009 14:31:54 -0000 To: solr-commits@lucene.apache.org From: ehatcher@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091012143154.7A1CD2388874@eris.apache.org> Author: ehatcher Date: Mon Oct 12 14:31:54 2009 New Revision: 824359 URL: http://svn.apache.org/viewvc?rev=824359&view=rev Log: Minor javadoc touchups Modified: lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java Modified: lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java URL: http://svn.apache.org/viewvc/lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java?rev=824359&r1=824358&r2=824359&view=diff ============================================================================== --- lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java (original) +++ lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java Mon Oct 12 14:31:54 2009 @@ -56,7 +56,7 @@ * would fetch as many rows as needed and gives one 'row' at a time. Only this * method is used during a full import * - * @return A 'row' . The 'key' for the map is the column name and the 'value' + * @return A 'row'. The 'key' for the map is the column name and the 'value' * is the value of that column. If there are no more rows to be * returned, return 'null' */ @@ -73,7 +73,7 @@ /** * This is used during delta-import. It gives the primary keys of the rows * that are deleted from this entity. If this entity is the root entity, solr - * document is deleted. If this is a sub-entity, the solr document is + * document is deleted. If this is a sub-entity, the Solr document is * considered as 'changed' and will be recreated * * @return the pk vs value of all changed rows @@ -107,7 +107,7 @@ } /** - * Invoked when the Entity processor is detroyed. towards the end of import. + * Invoked when the Entity processor is destroyed towards the end of import. * * @since solr 1.4 */