Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2004-07-27 18:27:48 +0000
committerDarin Wright2004-07-27 18:27:48 +0000
commitc9a77da8a7210492c130390c0c88221dfaa6a37a (patch)
treeec351e5f8af42d9edd8288a1745de31e85de16ec
parent092cfd996547b7ded6c10dd6ed179f4f654dd526 (diff)
downloadeclipse.jdt.debug-c9a77da8a7210492c130390c0c88221dfaa6a37a.tar.gz
eclipse.jdt.debug-c9a77da8a7210492c130390c0c88221dfaa6a37a.tar.xz
eclipse.jdt.debug-c9a77da8a7210492c130390c0c88221dfaa6a37a.zip
[r301] Bugzilla Bug 69736 - IWAV0138E Remote VM terminated too soon errorr301_v20040727
-rw-r--r--org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java
index 2bb8f95a3..0c11bac31 100644
--- a/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java
+++ b/org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/StandardVMRunner.java
@@ -275,9 +275,6 @@ public class StandardVMRunner extends AbstractVMRunner {
if (bootCP != null) {
if (bootCP.length > 0) {
arguments.add("-Xbootclasspath:" + convertClassPath(bootCP)); //$NON-NLS-1$
- } else {
- // empty
- arguments.add("-Xbootclasspath:"); //$NON-NLS-1$
}
}
if (appendBootCP != null) {

Back to the top