Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-08-20 21:19:10 +0000
committerThomas Watson2013-08-20 21:19:10 +0000
commit15da1929b38b272e3c7606ec956d6ab89ea12966 (patch)
tree7ac77cc8b0a5efb206986c7dff0710eb8f7d5c65 /bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime
parent57d2d493af0eb563c4012e3f87df8aebe715a0b5 (diff)
downloadrt.equinox.framework-15da1929b38b272e3c7606ec956d6ab89ea12966.tar.gz
rt.equinox.framework-15da1929b38b272e3c7606ec956d6ab89ea12966.tar.xz
rt.equinox.framework-15da1929b38b272e3c7606ec956d6ab89ea12966.zip
Bug 415527 - Need to make sure gosh.args are set appropriately
(--nointernactive --noshutdown)
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/ConsoleManager.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/ConsoleManager.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/ConsoleManager.java
index b4056f969..44333b900 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/ConsoleManager.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/core/runtime/internal/adaptor/ConsoleManager.java
@@ -36,14 +36,6 @@ public class ConsoleManager {
this.context = context;
if (!"true".equals(enabled) || "none".equals(consolePort)) { //$NON-NLS-1$ //$NON-NLS-2$
this.consoleBundle = "false".equals(enabled) ? CONSOLE_BUNDLE : enabled; //$NON-NLS-1$
- if (consolePort == null || consolePort.length() > 0) {
- // no -console was specified or it has specified none or a port for telnet;
- // need to make sure the gogo shell does not create an interactive console on standard in/out
- equinoxConfig.setProperty("gosh.args", "--nointeractive"); //$NON-NLS-1$//$NON-NLS-2$
- } else {
- // Need to make sure we don't shutdown the framework if no console is around (bug 362412)
- equinoxConfig.setProperty("gosh.args", "--noshutdown"); //$NON-NLS-1$//$NON-NLS-2$
- }
return;
}
this.consoleBundle = "unknown"; //$NON-NLS-1$

Back to the top