Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2012-09-28 14:44:35 +0000
committerMarkus Keller2012-09-28 14:44:35 +0000
commitb644a77916417dbe0eafa2ea3b3842931e283abc (patch)
tree18db5ffea722518ad4daaf9e3f5aa243664ee14c /org.eclipse.debug.core/core
parent7f144247727de01bfce8af95c05a898f6ec16d55 (diff)
downloadeclipse.platform.debug-b644a77916417dbe0eafa2ea3b3842931e283abc.tar.gz
eclipse.platform.debug-b644a77916417dbe0eafa2ea3b3842931e283abc.tar.xz
eclipse.platform.debug-b644a77916417dbe0eafa2ea3b3842931e283abc.zip
Bug 387504: Bugs in program argument parsing (compared to command line)v20120928-144435
Diffstat (limited to 'org.eclipse.debug.core/core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
index 4d3b6d00a..e1be26ba6 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
@@ -1370,7 +1370,7 @@ public class DebugPlugin extends Plugin {
throw new IllegalStateException();
}
}
- if (buf.length() > 0)
+ if (buf.length() > 0 || state != DEFAULT)
result.add(buf.toString());
return (String[]) result.toArray(new String[result.size()]);

Back to the top