Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/NewManagedProjectWizard.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/NewManagedProjectWizard.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/NewManagedProjectWizard.java
index f66340e6c68..e201e70b346 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/NewManagedProjectWizard.java
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/NewManagedProjectWizard.java
@@ -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);

Back to the top