X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.db.procore.ui%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fprocore%2Fui%2Finternal%2FActivator.java;fp=bundles%2Forg.simantics.db.procore.ui%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fprocore%2Fui%2Finternal%2FActivator.java;h=0000000000000000000000000000000000000000;hp=bee15d6ba6d52040ac6fba4d6e21a3525ce79801;hb=b3d5a93100324cb02748bff3877821c1305e22e3;hpb=18a064e7e2dc2036a1933d48368277777e14d71f diff --git a/bundles/org.simantics.db.procore.ui/src/org/simantics/db/procore/ui/internal/Activator.java b/bundles/org.simantics.db.procore.ui/src/org/simantics/db/procore/ui/internal/Activator.java deleted file mode 100644 index bee15d6ba..000000000 --- a/bundles/org.simantics.db.procore.ui/src/org/simantics/db/procore/ui/internal/Activator.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.simantics.db.procore.ui.internal; - -import org.osgi.framework.BundleActivator; -import org.osgi.framework.BundleContext; - -public class Activator implements BundleActivator { - - private static BundleContext context; - - static BundleContext getContext() { - return context; - } - - /* - * (non-Javadoc) - * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext bundleContext) throws Exception { - Activator.context = bundleContext; - } - - /* - * (non-Javadoc) - * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext bundleContext) throws Exception { - Activator.context = null; - } - -}