1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove check from loadExtensions and just do it in loadExtensionsSynchronized. Otherwise, a caller to loadExtensions could try to use the extension maps before they are populated.

This commit is contained in:
Leo Treggiari 2005-09-02 19:03:33 +00:00
parent fe2b61a78e
commit b243933e48

View file

@ -1606,9 +1606,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
* call this method first, it is effectively a startup method
*/
private static void loadExtensions() throws BuildException {
if (projectTypesLoaded)
return;
loadExtensionsSynchronized();
}