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:
parent
38db57e05c
commit
abaf691e8e
2 changed files with 2 additions and 2 deletions
|
@ -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++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue