1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

loadExtensionsSynchronized is not called when unnecessary

This commit is contained in:
Mikhail Sennikovsky 2005-12-16 15:36:38 +00:00
parent 1f3eb70d4a
commit a5585ba6b6

View file

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