1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 22:55:51 +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 try
{ {
IRemoteFile[] children = _subSystem.listFoldersAndFiles(_remoteFile); IRemoteFile[] children = _subSystem.listFoldersAndFiles(_remoteFile, monitor);
names = new String[children.length]; names = new String[children.length];
for (int i = 0; i < children.length; i++) for (int i = 0; i < children.length; i++)
{ {

View file

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