mirror of https://github.com/apache/lucene.git
fix javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@608956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f715fc6031
commit
d86944d06f
|
@ -246,7 +246,7 @@ public class IndexWriter {
|
|||
* Absolute hard maximum length for a term. If a term
|
||||
* arrives from the analyzer longer than this length, it
|
||||
* is skipped and a message is printed to infoStream, if
|
||||
* set (see {@link setInfoStream}).
|
||||
* set (see {@link #setInfoStream}).
|
||||
*/
|
||||
public final static int MAX_TERM_LENGTH = DocumentsWriter.MAX_TERM_LENGTH;
|
||||
|
||||
|
|
|
@ -22,15 +22,15 @@ import java.util.List;
|
|||
import java.util.ArrayList;
|
||||
import java.io.IOException;
|
||||
|
||||
/** A {@link DeletionPolicy} that wraps around any other
|
||||
* {@link DeletionPolicy} and adds the ability to hold and
|
||||
/** A {@link IndexDeletionPolicy} that wraps around any other
|
||||
* {@link IndexDeletionPolicy} and adds the ability to hold and
|
||||
* later release a single "snapshot" of an index. While
|
||||
* the snapshot is held, the {@link IndexWriter} will not
|
||||
* remove any files associated with it even if the index is
|
||||
* otherwise being actively, arbitrarily changed. Because
|
||||
* we wrap another arbitrary {@link DeletionPolicy}, this
|
||||
* we wrap another arbitrary {@link IndexDeletionPolicy}, this
|
||||
* gives you the freedom to continue using whatever {@link
|
||||
* DeletionPolicy} you would normally want to use with your
|
||||
* IndexDeletionPolicy} you would normally want to use with your
|
||||
* index. */
|
||||
|
||||
public class SnapshotDeletionPolicy implements IndexDeletionPolicy {
|
||||
|
|
Loading…
Reference in New Issue