mirror of https://github.com/apache/lucene.git
LUCENE-2144: add javadoc warning to AbstractAllTermDocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@889440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
00eadcb986
commit
3501d927de
|
@ -19,6 +19,13 @@ package org.apache.lucene.index;
|
|||
|
||||
import java.io.IOException;
|
||||
|
||||
/** Base class for enumerating all but deleted docs.
|
||||
*
|
||||
* <p>NOTE: this class is meant only to be used internally
|
||||
* by Lucene; it's only public so it can be shared across
|
||||
* packages. This means the API is freely subject to
|
||||
* change, and, the class could be removed entirely, in any
|
||||
* Lucene release. Use directly at your own risk! */
|
||||
public abstract class AbstractAllTermDocs implements TermDocs {
|
||||
|
||||
protected int maxDoc;
|
||||
|
|
Loading…
Reference in New Issue