LUCENE-8477: Restore public ctr for FilteredIntervalsSource

This commit is contained in:
jimczi 2019-04-08 13:29:49 +02:00
parent 0859be134d
commit c1222b57e9
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public abstract class FilteredIntervalsSource extends IntervalsSource {
* @param name the name of the filter
* @param in the source to filter
*/
private FilteredIntervalsSource(String name, IntervalsSource in) {
public FilteredIntervalsSource(String name, IntervalsSource in) {
this.name = name;
this.in = in;
}