Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java')
-rw-r--r--incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java
index caa850cfa..36e5df121 100644
--- a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java
+++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java
@@ -10,13 +10,13 @@
*******************************************************************************/
package org.eclipse.ecf.internal.bulletinboard;
-import org.eclipse.core.runtime.Plugin;
+import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
-public class BulletinBoardPlugin extends Plugin {
+public class BulletinBoardPlugin implements BundleActivator {
// The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.ecf.bulletinboard";
@@ -36,7 +36,6 @@ public class BulletinBoardPlugin extends Plugin {
* @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
- super.start(context);
}
/*
@@ -45,7 +44,6 @@ public class BulletinBoardPlugin extends Plugin {
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
- super.stop(context);
}
/**

Back to the top