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 @@ -27,16 +27,13 @@
*/
public class DocValuesDocReader implements DocReader, LeafReaderContextSupplier {

protected final SearchLookup searchLookup;

// provide access to the leaf context reader for expressions
protected final LeafReaderContext leafReaderContext;
private final LeafReaderContext leafReaderContext;

/** A leaf lookup for the bound segment this proxy will operate on. */
protected LeafSearchLookup leafSearchLookup;
private final LeafSearchLookup leafSearchLookup;

public DocValuesDocReader(SearchLookup searchLookup, LeafReaderContext leafContext) {
this.searchLookup = searchLookup;
this.leafReaderContext = leafContext;
this.leafSearchLookup = searchLookup.getLeafSearchLookup(leafReaderContext);
}
Expand Down