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

bug 319512: removed getExtensionDepCalcMap()

This commit is contained in:
Andrew Gvozdev 2011-03-10 22:41:40 +00:00
parent 20add21d25
commit ab8cfb77ff

View file

@ -197,7 +197,6 @@ public class ManagedBuildManager extends AbstractCExtension {
// This is the version of the manifest and project files
private static final Version buildInfoVersion = new Version(4, 0, 0);
private static final Version version = new Version(4, 0, 0);
private static Map depCalculatorsMap;
private static boolean projectTypesLoaded = false;
private static boolean projectTypesLoading = false;
// Project types defined in the manifest files
@ -361,17 +360,6 @@ public class ManagedBuildManager extends AbstractCExtension {
return version;
}
protected static Map getExtensionDepCalcMap() {
try {
loadExtensions();
} catch (BuildException e) {
}
if (depCalculatorsMap == null) {
depCalculatorsMap = new HashMap();
}
return depCalculatorsMap;
}
/**
* Safe accessor for the map of IDs to ProjectTypes
*/