Author: epbernard
Date: 2008-05-02 23:30:16 -0400 (Fri, 02 May 2008)
New Revision: 14640
Modified:
search/trunk/src/java/org/hibernate/search/FullTextSession.java
search/trunk/src/java/org/hibernate/search/impl/FullTextSessionImpl.java
Log:
Minor Javadoc
Modified: search/trunk/src/java/org/hibernate/search/FullTextSession.java
===================================================================
--- search/trunk/src/java/org/hibernate/search/FullTextSession.java 2008-05-02 23:25:33
UTC (rev 14639)
+++ search/trunk/src/java/org/hibernate/search/FullTextSession.java 2008-05-03 03:30:16
UTC (rev 14640)
@@ -21,6 +21,9 @@
/**
* Force the (re)indexing of a given <b>managed</b> object.
* Indexation is batched per transaction
+ * Non indexable entities are ignored
+ *
+ * @param entity The entity to index - must not be <code>null</code>.
*/
void index(Object entity);
Modified: search/trunk/src/java/org/hibernate/search/impl/FullTextSessionImpl.java
===================================================================
--- search/trunk/src/java/org/hibernate/search/impl/FullTextSessionImpl.java 2008-05-02
23:25:33 UTC (rev 14639)
+++ search/trunk/src/java/org/hibernate/search/impl/FullTextSessionImpl.java 2008-05-03
03:30:16 UTC (rev 14640)
@@ -128,7 +128,7 @@
* Non indexable entities are ignored
* The entity must be associated with the session
*
- * @param entity The neity to index - must not be <code>null</code>.
+ * @param entity The entity to index - must not be <code>null</code>.
*/
public void index(Object entity) {
if (entity == null) return;
Show replies by date