Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
/**
* Wrapper around a {@link TopDocs} instance and the maximum score.
*/
// TODO: Remove this class when https://github.com/elastic/elasticsearch/issues/32981 is addressed.
public final class TopDocsAndMaxScore {

public final TopDocs topDocs;
Expand All @@ -24,5 +23,4 @@ public TopDocsAndMaxScore(TopDocs topDocs, float maxScore) {
this.topDocs = topDocs;
this.maxScore = maxScore;
}

}