fix compilation

This commit is contained in:
peter
2018-07-17 19:22:02 +02:00
parent 676d46fbf9
commit 8500c8c515

View File

@@ -10,9 +10,10 @@ import org.jetbrains.annotations.NotNull;
* @author irengrig
*/
public class LightIndexPatternSearcher extends IndexPatternSearcher {
@Override
public boolean execute(@NotNull IndexPatternSearch.SearchParameters queryParameters,
@NotNull Processor<? super IndexPatternOccurrence> consumer) {
return executeImpl(queryParameters, consumer);
public void processQuery(@NotNull IndexPatternSearch.SearchParameters queryParameters,
@NotNull Processor<? super IndexPatternOccurrence> consumer) {
executeImpl(queryParameters, consumer);
}
}