File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
server/src/main/java/org/elasticsearch/script Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 2727 */
2828public class DocValuesDocReader implements DocReader , LeafReaderContextSupplier {
2929
30- protected final SearchLookup searchLookup ;
31-
3230 // provide access to the leaf context reader for expressions
33- protected final LeafReaderContext leafReaderContext ;
31+ private final LeafReaderContext leafReaderContext ;
3432
3533 /** A leaf lookup for the bound segment this proxy will operate on. */
36- protected LeafSearchLookup leafSearchLookup ;
34+ private final LeafSearchLookup leafSearchLookup ;
3735
3836 public DocValuesDocReader (SearchLookup searchLookup , LeafReaderContext leafContext ) {
39- this .searchLookup = searchLookup ;
4037 this .leafReaderContext = leafContext ;
4138 this .leafSearchLookup = searchLookup .getLeafSearchLookup (leafReaderContext );
4239 }
You can’t perform that action at this time.
0 commit comments