Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/Activator.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/Activator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/Activator.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/Activator.java
index b96139545e..a6f8033e19 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/Activator.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/bundle/Activator.java
@@ -40,7 +40,7 @@ public final class Activator extends EMFPlugin
public void start(BundleContext context) throws Exception
{
super.start(context);
- CDO.BUNDLE.setBundleContext(context);
+ OM.BUNDLE.setBundleContext(context);
// EMFUtil.addModelInfos(EMFUtil.PACKAGE_MANAGER);
// IExtensionRegistry registry = Platform.getExtensionRegistry();
// IConfigurationElement[] elements =
@@ -71,7 +71,7 @@ public final class Activator extends EMFPlugin
// registry.removeRegistryChangeListener(this);
// EMFUtil.removeModelInfos(EMFUtil.PACKAGE_MANAGER);
plugin = null;
- CDO.BUNDLE.setBundleContext(null);
+ OM.BUNDLE.setBundleContext(null);
super.stop(context);
}

Back to the top