1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

always pass in non-null monitor

This commit is contained in:
David McKnight 2006-12-12 17:55:20 +00:00
parent 6785fd8359
commit d380cda26a

View file

@ -33,6 +33,7 @@ import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
@ -478,7 +479,7 @@ public class SystemEditableRemoteFile implements ISystemEditableRemoteObject, IP
}
else
{
return download((IProgressMonitor) null);
return download(new NullProgressMonitor());
}
}