mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 09:35:23 +02:00
always pass in monitor
This commit is contained in:
parent
94eb7432bc
commit
931cae4e5d
1 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@ import java.util.Vector;
|
||||||
import org.eclipse.core.resources.IResource;
|
import org.eclipse.core.resources.IResource;
|
||||||
import org.eclipse.core.runtime.IAdaptable;
|
import org.eclipse.core.runtime.IAdaptable;
|
||||||
import org.eclipse.core.runtime.IProgressMonitor;
|
import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
|
import org.eclipse.core.runtime.NullProgressMonitor;
|
||||||
import org.eclipse.jface.action.IAction;
|
import org.eclipse.jface.action.IAction;
|
||||||
import org.eclipse.jface.resource.ImageDescriptor;
|
import org.eclipse.jface.resource.ImageDescriptor;
|
||||||
import org.eclipse.jface.viewers.IStructuredSelection;
|
import org.eclipse.jface.viewers.IStructuredSelection;
|
||||||
|
@ -377,7 +378,7 @@ public class SystemViewFilterReferenceAdapter
|
||||||
|
|
||||||
if (monitor == null)
|
if (monitor == null)
|
||||||
{
|
{
|
||||||
allChildren = ss.resolveFilterStrings(filterStrings);
|
allChildren = ss.resolveFilterStrings(new NullProgressMonitor(), filterStrings);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue