1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Don't set binary parsers here - they are set by ManagedMakeProject.update

This commit is contained in:
Leo Treggiari 2005-07-06 18:24:50 +00:00
parent 3c93caf4c9
commit db06ca5d13

View file

@ -187,13 +187,6 @@ public class NewManagedProjectWizard extends NewCProjectWizard {
if (newConfigs.length > 0) {
IToolChain tc = newConfigs[0].getToolChain();
ITargetPlatform targetPlatform = tc.getTargetPlatform();
if (targetPlatform != null) {
// Create entries for all binary parsers
String[] binaryParsers = targetPlatform.getBinaryParserList();
for (int i=0; i<binaryParsers.length; i++) {
desc.create(CCorePlugin.BINARY_PARSER_UNIQ_ID, binaryParsers[i]);
}
}
}
} catch (CoreException e) {
ManagedBuilderUIPlugin.log(e);