1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-26 10:25:32 +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 // This is the version of the manifest and project files
private static final Version buildInfoVersion = new Version(4, 0, 0); private static final Version buildInfoVersion = new Version(4, 0, 0);
private static final Version version = 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 projectTypesLoaded = false;
private static boolean projectTypesLoading = false; private static boolean projectTypesLoading = false;
// Project types defined in the manifest files // Project types defined in the manifest files
@ -361,17 +360,6 @@ public class ManagedBuildManager extends AbstractCExtension {
return version; 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 * Safe accessor for the map of IDs to ProjectTypes
*/ */