Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLazar Kirchev2013-04-14 15:11:37 +0000
committerLazar Kirchev2013-04-14 15:11:37 +0000
commit473476ae4d875fc06e90c7fadc0436427e8b55a5 (patch)
tree39c582a11afbd8db3ccf7b55903e6efec3710454 /bundles/org.eclipse.equinox.console
parentc36ff638c1be8c4e54e60786a058469aff8cd957 (diff)
downloadrt.equinox.bundles-473476ae4d875fc06e90c7fadc0436427e8b55a5.tar.gz
rt.equinox.bundles-473476ae4d875fc06e90c7fadc0436427e8b55a5.tar.xz
rt.equinox.bundles-473476ae4d875fc06e90c7fadc0436427e8b55a5.zip
Bug 389419 - Console close command exits without shutting down the frameworkI20130416-0800
Diffstat (limited to 'bundles/org.eclipse.equinox.console')
-rwxr-xr-xbundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
index 3999f1f4b..529c2df70 100755
--- a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
+++ b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
@@ -1176,7 +1176,6 @@ public class EquinoxCommandProvider implements SynchronousBundleListener {
public void close() throws Exception {
if (confirmStop()) {
context.getBundle(0).stop();
- System.exit(0);
}
}

Back to the top