make CategoryPathUtils package-private (fix documentation-lint complaints)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1429680 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shai Erera 2013-01-07 06:30:05 +00:00
parent fa59580879
commit c2ccab114d
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ import org.apache.lucene.facet.taxonomy.CategoryPath;
*/ */
/** Utilities for use of {@link CategoryPath} by {@link CompactLabelToOrdinal}. */ /** Utilities for use of {@link CategoryPath} by {@link CompactLabelToOrdinal}. */
public class CategoryPathUtils { class CategoryPathUtils {
/** Serializes the given {@link CategoryPath} to the {@link CharBlockArray}. */ /** Serializes the given {@link CategoryPath} to the {@link CharBlockArray}. */
public static void serialize(CategoryPath cp, CharBlockArray 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)}. * {@link #serialize(CategoryPath, CharBlockArray)}.
*/ */
public static int hashCodeOfSerialized(CharBlockArray charBlockArray, int offset) { public static int hashCodeOfSerialized(CharBlockArray charBlockArray, int offset) {