Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2011-10-21 15:21:01 +0000
committerThomas Watson2011-10-21 15:21:01 +0000
commit01cafbbefc4999d995b1a35ed1a2a3840b1350c2 (patch)
tree2cca05a063e6aafefca17f190b9584a9b4058b07
parent306f7f89aff350fd83b816f2a81d6a911c06733f (diff)
downloadrt.equinox.framework-01cafbbefc4999d995b1a35ed1a2a3840b1350c2.tar.gz
rt.equinox.framework-01cafbbefc4999d995b1a35ed1a2a3840b1350c2.tar.xz
rt.equinox.framework-01cafbbefc4999d995b1a35ed1a2a3840b1350c2.zip
Bug 361653 - console bundle bsn changed to org.eclipse.equinox.console
-rw-r--r--bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java b/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java
index 6efd58ef0..751e4cd0e 100644
--- a/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java
+++ b/bundles/org.eclipse.osgi/console/src/org/eclipse/osgi/framework/internal/core/ConsoleManager.java
@@ -85,7 +85,7 @@ public class ConsoleManager implements ServiceTrackerCustomizer<ConsoleSession,
public static final String PROP_CONSOLE = "osgi.console"; //$NON-NLS-1$
private static final String PROP_SYSTEM_IN_OUT = "console.systemInOut"; //$NON-NLS-1$
private static final String CONSOLE_NAME = "OSGi Console"; //$NON-NLS-1$
- private static final String CONSOLE_BUNDLE = "org.eclipse.equinox.console.supportability"; //$NON-NLS-1$
+ private static final String CONSOLE_BUNDLE = "org.eclipse.equinox.console"; //$NON-NLS-1$
public static final String PROP_CONSOLE_ENABLED = "osgi.console.enable.builtin"; //$NON-NLS-1$
final Framework framework;
private final ServiceTracker<CommandProvider, CommandProvider> cpTracker;

Back to the top