Make buildQueryRunnerForSegment protected in ServerManager(#11493)

This is a minor change in ServerManager. Any sub-class can access the buildQueryRunnerForSegment in an extension if required.
This commit is contained in:
Abhishek Agarwal 2021-07-24 11:08:28 +05:30 committed by GitHub
parent c98e7c3aa3
commit fcb908d505
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ public class ServerManager implements QuerySegmentWalker
);
}
<T> QueryRunner<T> buildQueryRunnerForSegment(
protected <T> QueryRunner<T> buildQueryRunnerForSegment(
final Query<T> query,
final SegmentDescriptor descriptor,
final QueryRunnerFactory<T, Query<T>> factory,