Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/internal/perf/remote/launch/PerfOptionsTab.java')
-rw-r--r--perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/internal/perf/remote/launch/PerfOptionsTab.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/internal/perf/remote/launch/PerfOptionsTab.java b/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/internal/perf/remote/launch/PerfOptionsTab.java
index 5d11e31a6c..c9c6ef9253 100644
--- a/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/internal/perf/remote/launch/PerfOptionsTab.java
+++ b/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/internal/perf/remote/launch/PerfOptionsTab.java
@@ -14,14 +14,7 @@
*******************************************************************************/
package org.eclipse.linuxtools.internal.perf.remote.launch;
-import org.eclipse.core.resources.IProject;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
import org.eclipse.debug.core.ILaunchConfiguration;
-import org.eclipse.linuxtools.internal.perf.PerfCore;
-import org.eclipse.linuxtools.internal.perf.PerfPlugin;
-import org.eclipse.linuxtools.profiling.launch.ConfigUtils;
public class PerfOptionsTab extends org.eclipse.linuxtools.internal.perf.launch.PerfOptionsTab {
@@ -29,18 +22,6 @@ public class PerfOptionsTab extends org.eclipse.linuxtools.internal.perf.launch.
@Override
public void initializeFrom(ILaunchConfiguration config) {
- ConfigUtils configUtils = new ConfigUtils(config);
- IProject project = null;
-
- try {
- project = ConfigUtils.getProject(configUtils.getProjectName());
- } catch (CoreException e1) {
- e1.printStackTrace();
- }
- if (!PerfCore.checkRemotePerfInPath(project)) {
- IStatus status = new Status(IStatus.ERROR, PerfPlugin.PLUGIN_ID, "Error: Perf was not found on PATH"); //$NON-NLS-1$
- ex = new CoreException(status);
- }
super.initializeFrom(config);
}

Back to the top