Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2014-05-27 08:11:38 +0000
committerUwe Stieber2014-05-27 08:12:05 +0000
commitcec947cc44e78e5a433579df83c276cef1df1d4f (patch)
tree2dbcfa8e8cfd92de5265b3b8c35b75c19b5fb79a /target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org
parent1f361d42a4e9d5bc4d8bb3cb58017482811530a6 (diff)
downloadorg.eclipse.tcf-cec947cc44e78e5a433579df83c276cef1df1d4f.tar.gz
org.eclipse.tcf-cec947cc44e78e5a433579df83c276cef1df1d4f.tar.xz
org.eclipse.tcf-cec947cc44e78e5a433579df83c276cef1df1d4f.zip
Target Explorer: Always apply path maps to newly opened channels. Skip comparisation in that case.
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org/eclipse/tcf/te/tcf/launch/ui/editor/PathMapEditorPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org/eclipse/tcf/te/tcf/launch/ui/editor/PathMapEditorPage.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org/eclipse/tcf/te/tcf/launch/ui/editor/PathMapEditorPage.java
index a443bc77a..aa9f8c4bf 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org/eclipse/tcf/te/tcf/launch/ui/editor/PathMapEditorPage.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.launch.ui/src/org/eclipse/tcf/te/tcf/launch/ui/editor/PathMapEditorPage.java
@@ -53,7 +53,7 @@ public class PathMapEditorPage extends AbstractTcfLaunchTabContainerEditorPage {
if (peerNode != null && peerNode.getPeer() != null) {
IPathMapService service = ServiceManager.getInstance().getService(peerNode.getPeer(), IPathMapService.class);
if (service != null) {
- service.applyPathMap(peerNode.getPeer(), new Callback() {
+ service.applyPathMap(peerNode.getPeer(), false, new Callback() {
@Override
protected void internalDone(Object caller, IStatus status) {
if (status != null && status.getSeverity() == IStatus.ERROR) {

Back to the top