Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Tasse2012-07-13 20:40:57 +0000
committerPatrick Tasse2012-07-13 20:47:05 +0000
commitc44524fdda3b5b7a8b9289dced61cd9c1477314b (patch)
tree141d818d272f90c6ba22cb8368306fc67d6ddfa5
parent1d826dbfd9c6c5f7f20bc227d596e633d84e183b (diff)
downloadorg.eclipse.linuxtools-c44524fdda3b5b7a8b9289dced61cd9c1477314b.tar.gz
org.eclipse.linuxtools-c44524fdda3b5b7a8b9289dced61cd9c1477314b.tar.xz
org.eclipse.linuxtools-c44524fdda3b5b7a8b9289dced61cd9c1477314b.zip
Fix for bug 384406: Delete trace propagation not working in Windows.
-rw-r--r--lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/handlers/DeleteTraceHandler.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/handlers/DeleteTraceHandler.java b/lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/handlers/DeleteTraceHandler.java
index 656565b088..012e10c7cc 100644
--- a/lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/handlers/DeleteTraceHandler.java
+++ b/lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/project/handlers/DeleteTraceHandler.java
@@ -12,7 +12,6 @@
package org.eclipse.linuxtools.internal.tmf.ui.project.handlers;
-import java.io.IOException;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
@@ -116,7 +115,7 @@ public class DeleteTraceHandler extends AbstractHandler {
try {
IPath path = resource.getLocation();
if (path != null && (trace.getParent() instanceof TmfTraceFolder)) {
- String location = path.toFile().getCanonicalPath();
+ String location = path.toString();
TmfExperimentFolder experimentFolder = trace.getProject().getExperimentsFolder();
// Propagate the removal to traces
@@ -143,8 +142,6 @@ public class DeleteTraceHandler extends AbstractHandler {
// Refresh the project
trace.getProject().refresh();
- } catch (IOException e) {
- Activator.getDefault().logError("Error deleting trace: " + trace.getName(), e); //$NON-NLS-1$
} catch (CoreException e) {
Activator.getDefault().logError("Error deleting trace: " + trace.getName(), e); //$NON-NLS-1$
}

Back to the top