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

Bug 302881 Tweak fix; return previous referenced settings if the referenced project's configuration isn't yet accessible.

This commit is contained in:
James Blackburn 2010-03-18 16:32:49 +00:00
parent 3d44a24ca3
commit 768092e26c

View file

@ -98,12 +98,10 @@ public class CfgExportSettingContainerFactory extends
return es;
}
}
} else {
// If project doesn't not open in this workspace, just return the previous settings
// for the moment. We'll update again when the referenced project reappears
return prevSettings;
}
return new CExternalSetting[0];
// If project not yet accessible, just return the previous settings
// for the moment. We'll update again when the referenced project reappears
return prevSettings;
}
}