# HG changeset patch # User wpaul # Date 1283217588 18000 # Node ID c8f736b04bf4fbe3c1ba8eb85734e2f80273b07b # Parent 581f0f8d494b2ee34bb3151e1541b31791f0b5d0 removed obsolete code. diff -r 581f0f8d494b -r c8f736b04bf4 project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/importWizards/BldInfImportWizard.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/importWizards/BldInfImportWizard.java Mon Aug 30 20:19:09 2010 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/importWizards/BldInfImportWizard.java Mon Aug 30 20:19:48 2010 -0500 @@ -37,7 +37,6 @@ import org.eclipse.ui.IWorkbench; import com.nokia.carbide.cdt.builder.CarbideBuilderPlugin; -import com.nokia.carbide.cdt.builder.project.ICarbideProjectInfo; import com.nokia.carbide.cpp.internal.api.sdk.ISDKManagerInternal; import com.nokia.carbide.cpp.internal.featureTracker.FeatureUseTrackerPlugin; import com.nokia.carbide.cpp.internal.project.ui.ProjectUIPlugin; @@ -102,8 +101,6 @@ // way the project setting will be set to build bld.inf. final List components = mmpSelectionPage.areAllMakMakeReferencesChecked() ? new ArrayList(0) : mmpSelectionPage.getSelectedMakMakeReferences(); - final List refs = getSelectedMakMakeReferences(); - final List selectedConfigs = getSelectedConfigs(); // run this in a workspace job @@ -112,25 +109,6 @@ public IStatus runInWorkspace(IProgressMonitor monitor) throws CoreException { monitor.beginTask(Messages.BldInfImportWizard_CreatingProjectJobName, IProgressMonitor.UNKNOWN); - // write the debug target mmp setting - use the last mmp in - // the list of selected mak make files. - // We also need to check for project test mmpfiles and add that only if the project is only comprised of test mmp files - String debugMMP = ""; //$NON-NLS-1$ - boolean hasOneNormalMMP = false; // Don't add test mmp if there's a regular MMP - for (String ref : refs) { - if (ref.toLowerCase().endsWith(".mmp")){ - hasOneNormalMMP = true; - debugMMP = ref; - } - - if (hasOneNormalMMP == false){ - if (ref.toLowerCase().endsWith(".mmp " + ICarbideProjectInfo.TEST_COMPONENT_LABEL)) { //$NON-NLS-1$ - debugMMP = ref; - debugMMP = debugMMP.substring(0, debugMMP.indexOf( " " + ICarbideProjectInfo.TEST_COMPONENT_LABEL)); - } - } - } // for - IProject newProject = null; if (isLinkedProject){ newProject = ProjectCorePlugin.createProject(projectName, null); @@ -143,9 +121,9 @@ newProject.setSessionProperty(CarbideBuilderPlugin.SBSV2_PROJECT, Boolean.valueOf(useSBSv2Builder())); if (isLinkedProject){ - ProjectCorePlugin.postProjectCreatedActions(newProject, absoluteInfPath, selectedConfigs, components, debugMMP, null, monitor); + ProjectCorePlugin.postProjectCreatedActions(newProject, absoluteInfPath, selectedConfigs, components, null, null, monitor); } else { - ProjectCorePlugin.postProjectCreatedActions(newProject, projectRelativePath, selectedConfigs, components, debugMMP, null, monitor); + ProjectCorePlugin.postProjectCreatedActions(newProject, projectRelativePath, selectedConfigs, components, null, null, monitor); } if (monitor.isCanceled()) {