Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/Activator.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/Activator.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/Activator.java b/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/Activator.java
index bda3139614b..97a42bd5d6e 100644
--- a/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/Activator.java
+++ b/plugins/org.eclipse.osee.framework.core.datastore/src/org/eclipse/osee/framework/core/datastore/internal/Activator.java
@@ -27,10 +27,12 @@ public class Activator implements BundleActivator {
this.services = new ArrayList<ServiceDependencyTracker>();
}
+ @Override
public void start(BundleContext context) throws Exception {
createService(context, new OseeCachingServiceRegistrationHandler());
}
+ @Override
public void stop(BundleContext context) throws Exception {
for (ServiceDependencyTracker service : services) {
service.close();

Back to the top