Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-01-14 22:30:00 +0000
committereutarass2010-01-14 22:30:00 +0000
commit9c6810a1ebc8fcf6e93d5d95d04462939704d17d (patch)
treef48d34fff993190d1160bd19830755b8e52a1bba /plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch
parent432a5897367b42fec4142ef3079e0a6d8f37f1a7 (diff)
downloadorg.eclipse.tcf-9c6810a1ebc8fcf6e93d5d95d04462939704d17d.tar.gz
org.eclipse.tcf-9c6810a1ebc8fcf6e93d5d95d04462939704d17d.tar.xz
org.eclipse.tcf-9c6810a1ebc8fcf6e93d5d95d04462939704d17d.zip
TCF Agent: more value-add support: few bug fixes and cosmetic changes
Diffstat (limited to 'plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch')
-rw-r--r--plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLaunchDelegate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLaunchDelegate.java b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLaunchDelegate.java
index 616eec5bc..3755352b6 100644
--- a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLaunchDelegate.java
+++ b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFLaunchDelegate.java
@@ -134,7 +134,7 @@ public class TCFLaunchDelegate extends LaunchConfigurationDelegate {
while (i < s.length()) {
ch = s.charAt(i++);
if (ch == '|') {
- e.props.put(nm, bf.toString());
+ if (bf.length() > 0) e.props.put(nm, bf.toString());
break;
}
else if (ch == '\\') {

Back to the top