You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2013/01/07 07:32:36 UTC

svn commit: r1429681 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/facet/ lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CategoryPathUtils.java

Author: shaie
Date: Mon Jan  7 06:32:35 2013
New Revision: 1429681

URL: http://svn.apache.org/viewvc?rev=1429681&view=rev
Log:
make CategoryPathUtils package-private (fix documentation-lint complaints)

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/facet/   (props changed)
    lucene/dev/branches/branch_4x/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CategoryPathUtils.java

Modified: lucene/dev/branches/branch_4x/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CategoryPathUtils.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CategoryPathUtils.java?rev=1429681&r1=1429680&r2=1429681&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CategoryPathUtils.java (original)
+++ lucene/dev/branches/branch_4x/lucene/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/CategoryPathUtils.java Mon Jan  7 06:32:35 2013
@@ -20,7 +20,7 @@ import org.apache.lucene.facet.taxonomy.
  */
 
 /** Utilities for use of {@link CategoryPath} by {@link CompactLabelToOrdinal}. */
-public class CategoryPathUtils {
+class CategoryPathUtils {
   
   /** Serializes the given {@link CategoryPath} to the {@link CharBlockArray}. */
   public static void serialize(CategoryPath cp, CharBlockArray charBlockArray) {
@@ -35,7 +35,7 @@ public class CategoryPathUtils {
   }
 
   /**
-   * Calculates a hash function of a path that serialized with
+   * Calculates a hash function of a path that was serialized with
    * {@link #serialize(CategoryPath, CharBlockArray)}.
    */
   public static int hashCodeOfSerialized(CharBlockArray charBlockArray, int offset) {