Skip to content

Commit a6ffeee

Browse files
authored
Remove outdated TODO from TopDocsAndMaxScore (#126386)
There are no plans to remove max_score, as highlighted in #32981 . This commit removes a related TODO given we don't plan on addressing it.
1 parent 262a793 commit a6ffeee

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

server/src/main/java/org/elasticsearch/common/lucene/search/TopDocsAndMaxScore.java

-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
/**
1515
* Wrapper around a {@link TopDocs} instance and the maximum score.
1616
*/
17-
// TODO: Remove this class when https://github.com/elastic/elasticsearch/issues/32981 is addressed.
1817
public final class TopDocsAndMaxScore {
1918

2019
public final TopDocs topDocs;
@@ -24,5 +23,4 @@ public TopDocsAndMaxScore(TopDocs topDocs, float maxScore) {
2423
this.topDocs = topDocs;
2524
this.maxScore = maxScore;
2625
}
27-
2826
}

0 commit comments

Comments
 (0)