You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2009/10/12 16:31:54 UTC

svn commit: r824359 - /lucene/solr/trunk/contrib/dataimporthandler/src/main/java/org/apache/solr/handler/dataimport/EntityProcessor.java

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
    */