1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-14 11:45:38 +02:00

Bug 259880.

This commit is contained in:
Ken Ryall 2009-01-22 07:41:53 +00:00
parent 88f7869499
commit f0a16ef93a

View file

@ -290,8 +290,11 @@ public class CSourceLookupParticipant extends AbstractSourceLookupParticipant {
}
private void endContainersSourceDirector() {
for (ISourceContainer cont : containers)
cont.init(getDirector());
if (containers != null)
{
for (ISourceContainer cont : containers)
cont.init(getDirector());
}
containers = null;
}
}