mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-23 16:23:52 +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;
|
children = EMPTY_LIST;
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
children = filterChildren(children);
|
{
|
||||||
|
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