1
0
Fork 0
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:
David McKnight 2007-05-18 15:17:51 +00:00
parent 3a0905f71d
commit d6a5819222

View file

@ -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);
}
}
}