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

Bug 160777 - use progress monitor for queries

This commit is contained in:
David McKnight 2006-10-20 20:26:13 +00:00
parent 38db57e05c
commit abaf691e8e
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ public class RSEFileStoreRemoteFileWrapper extends FileStore implements IFileSto
{
try
{
IRemoteFile[] children = _subSystem.listFoldersAndFiles(_remoteFile);
IRemoteFile[] children = _subSystem.listFoldersAndFiles(_remoteFile, monitor);
names = new String[children.length];
for (int i = 0; i < children.length; i++)
{

View file

@ -541,7 +541,7 @@ public class UniversalFileTransferUtility
}
catch (Exception e)
{
RSEUIPlugin.logError("An exception occured " + e.getMessage(), e);
SystemBasePlugin.logError("An exception occured " + e.getMessage(), e);
return null;
}