mirror of https://github.com/apache/lucene.git
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:
parent
4f117dee40
commit
6448dce4ea
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue