mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
[187021] propagating the exception that occurs in a bad query operation
This commit is contained in:
parent
3a0905f71d
commit
d6a5819222
1 changed files with 10 additions and 2 deletions
|
@ -727,8 +727,16 @@ public class SystemViewRemoteFileAdapter
|
|||
{
|
||||
children = EMPTY_LIST;
|
||||
}
|
||||
else {
|
||||
children = filterChildren(children);
|
||||
else
|
||||
{
|
||||
if (children.length == 1 && children[0] instanceof SystemMessageObject)
|
||||
{
|
||||
// don't filter children so that the message gets propagated
|
||||
}
|
||||
else
|
||||
{
|
||||
children = filterChildren(children);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue