LUCENE-8081: Fix javadoc tag.

This commit is contained in:
Adrien Grand 2017-12-08 08:52:19 +01:00
parent 0e1d6682d6
commit b32739428b
1 changed files with 2 additions and 2 deletions

View File

@ -432,7 +432,7 @@ public class LiveIndexWriterConfig {
/** /**
* Expert: Returns if indexing threads check for pending flushes on update in order * Expert: Returns if indexing threads check for pending flushes on update in order
* to help our flushing indexing buffers to disk * to help our flushing indexing buffers to disk
* @lucene.eperimental * @lucene.experimental
*/ */
public boolean isCheckPendingFlushOnUpdate() { public boolean isCheckPendingFlushOnUpdate() {
return checkPendingFlushOnUpdate; return checkPendingFlushOnUpdate;
@ -445,7 +445,7 @@ public class LiveIndexWriterConfig {
* be the only thread writing segments to disk unless flushes are falling behind. If indexing is stalled * be the only thread writing segments to disk unless flushes are falling behind. If indexing is stalled
* due to too many pending flushes indexing threads will help our writing pending segment flushes to disk. * due to too many pending flushes indexing threads will help our writing pending segment flushes to disk.
* *
* @lucene.eperimental * @lucene.experimental
*/ */
public LiveIndexWriterConfig setCheckPendingFlushUpdate(boolean checkPendingFlushOnUpdate) { public LiveIndexWriterConfig setCheckPendingFlushUpdate(boolean checkPendingFlushOnUpdate) {
this.checkPendingFlushOnUpdate = checkPendingFlushOnUpdate; this.checkPendingFlushOnUpdate = checkPendingFlushOnUpdate;