LUCENE-7763: Remove outdated comment in IndexWriterConfig.setIndexSort javadocs.

(马可阳 via Christine Poerschke)
This commit is contained in:
Christine Poerschke 2017-03-31 18:10:27 +01:00
parent bdb0d588ee
commit 413555651d
2 changed files with 6 additions and 1 deletions

View File

@ -106,6 +106,11 @@ Bug Fixes
* LUCENE-7755: Fixed join queries to not reference IndexReaders, as it could
cause leaks if they are cached. (Adrien Grand)
Other
* LUCENE-7763: Remove outdated comment in IndexWriterConfig.setIndexSort javadocs.
(马可阳 via Christine Poerschke)
======================= Lucene 6.5.0 =======================
API Changes

View File

@ -466,7 +466,7 @@ public final class IndexWriterConfig extends LiveIndexWriterConfig {
SortField.Type.FLOAT);
/**
* Set the {@link Sort} order to use when merging segments. Note that newly flushed segments will remain unsorted.
* Set the {@link Sort} order to use when merging segments.
*/
public IndexWriterConfig setIndexSort(Sort sort) {
for(SortField sortField : sort.getSort()) {