Add missing javadocs.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1462009 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrien Grand 2013-03-28 09:37:47 +00:00
parent 4f117dee40
commit 6448dce4ea
1 changed files with 3 additions and 0 deletions

View File

@ -62,6 +62,9 @@ public abstract class MergePolicy implements java.io.Closeable, Cloneable {
/** A map of doc IDs. */
public static abstract class DocMap {
/** Sole constructor, typically invoked from sub-classes constructors. */
protected DocMap() {}
/** Return the new doc ID according to its old value. */
public abstract int map(int old);