return null;
}
// TODO: Run the collecting of items on a background thread?
if (filterField.getSelectedOption() == PATH) {
String modifiedFilterText = addPathSeparatorToTypeName(filterText);
ProjectPathFilter filter = new ProjectPathFilter(modifiedFilterText);
Collection<IntegrationEntity> matching = filter.apply(project);
if (!matching.isEmpty()) {
return matching;
}
}
Predicate<String> condition = filterField.getFilter();