Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2014-04-16 10:55:27 +0000
committerTobias Schwarz2014-04-16 10:55:27 +0000
commit88d85b8b90bf0739307540928e43b8e618904f51 (patch)
tree8d31febc25c5a73233f2f0ea4d56e33a5a90a60e
parent7c62c4fa18a8391e669bb6ad2b7fb9e24b52815b (diff)
downloadorg.eclipse.tcf-88d85b8b90bf0739307540928e43b8e618904f51.tar.gz
org.eclipse.tcf-88d85b8b90bf0739307540928e43b8e618904f51.tar.xz
org.eclipse.tcf-88d85b8b90bf0739307540928e43b8e618904f51.zip
Target Explorer: fix delegate initialize
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/src/org/eclipse/tcf/te/runtime/persistence/delegates/PathVariableDelegate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/src/org/eclipse/tcf/te/runtime/persistence/delegates/PathVariableDelegate.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/src/org/eclipse/tcf/te/runtime/persistence/delegates/PathVariableDelegate.java
index 518d550cc..0879a8b2e 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/src/org/eclipse/tcf/te/runtime/persistence/delegates/PathVariableDelegate.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/src/org/eclipse/tcf/te/runtime/persistence/delegates/PathVariableDelegate.java
@@ -50,7 +50,7 @@ public class PathVariableDelegate extends AbstractPathVariableDelegate {
if (data instanceof Map) {
String keys = (String)((Map<?,?>)data).get("keysToHandle"); //$NON-NLS-1$
if (keys != null) {
- keysToHandle = keys.split("\\w*,\\w*"); //$NON-NLS-1$
+ keysToHandle = keys.split("\\W*,\\W*"); //$NON-NLS-1$
}
}
}

Back to the top