[exo-jcr-commits] exo-jcr SVN: r3930 - jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene.

do-not-reply at jboss.org do-not-reply at jboss.org
Sun Feb 6 14:54:03 EST 2011


Author: tolusha
Date: 2011-02-06 14:54:03 -0500 (Sun, 06 Feb 2011)
New Revision: 3930

Modified:
   jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/MultiIndex.java
Log:
EXOJCR-1104: fix bugs

Modified: jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/MultiIndex.java
===================================================================
--- jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/MultiIndex.java	2011-02-06 19:41:50 UTC (rev 3929)
+++ jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/MultiIndex.java	2011-02-06 19:54:03 UTC (rev 3930)
@@ -1401,6 +1401,8 @@
     *            the current NodeState.
     * @param path
     *            the path of the current node.
+    * @param stateMgr
+    *            the shared item state manager.            
     * @param count
     *            the number of nodes already indexed.
     * @return the number of nodes indexed so far.
@@ -1411,7 +1413,7 @@
     * @throws RepositoryException
     *             if any other error occurs
     */
-   private long createIndex(NodeData node, long count) throws IOException,
+   private long createIndex(NodeData node, ItemDataConsumer stateMgr, long count) throws IOException,
       RepositoryException
    {
       // NodeId id = node.getNodeId();
@@ -1462,8 +1464,6 @@
     *            the current NodeState.
     * @param path
     *            the path of the current node.
-    * @param stateMgr
-    *            the shared item state manager.
     * @param count
     *            the number of nodes already indexed.
     * @return the number of nodes indexed so far.
@@ -1474,7 +1474,7 @@
     * @throws RepositoryException
     *             if any other error occurs
     */
-   private long createIndex(Indexable indexableComponent, NodeData rootNode, ItemDataConsumer stateMgr, long count)
+   private long createIndex(Indexable indexableComponent, NodeData rootNode, long count)
       throws IOException, RepositoryException
    {
       NodeDataIndexingIterator iterator =



More information about the exo-jcr-commits mailing list