1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

don't allow concurrent internalGetChildren() calls

This commit is contained in:
David McKnight 2006-07-14 16:11:36 +00:00
parent 1467bb5bed
commit 94260734eb

View file

@ -245,7 +245,7 @@ public class SystemViewFilterReferenceAdapter
* the context is assumed to be modal and, as such, the modal version of ss.resolveFilterStrings
* is called rather than the main thread version.
*/
protected Object[] internalGetChildren(IProgressMonitor monitor, Object element)
protected synchronized Object[] internalGetChildren(IProgressMonitor monitor, Object element)
{
Object[] children = null;
ISystemFilterReference fRef = getFilterReference(element);