LUCENE-8477: Restore public ctr for FilteredIntervalsSource

This commit is contained in:
jimczi 2019-04-08 13:29:49 +02:00
parent f3cdd326bd
commit e460356abe

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;
}