1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bug 561639 - Remove Activator for CDT Templates Core

Remove org.eclipse.tools.templates.core.internal.Activator

Change-Id: I690701bc9d4ea49f59eebda23866a17d572c0e57
Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
This commit is contained in:
Alexander Fedorov 2020-04-01 12:51:03 +03:00
parent 456afb3b8f
commit 0c464f651e
2 changed files with 2 additions and 36 deletions

View file

@ -1,9 +1,9 @@
Manifest-Version: 1.0
Automatic-Module-Name: org.eclipse.tools.templates.core
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.tools.templates.core
Bundle-Version: 1.1.100.qualifier
Bundle-Activator: org.eclipse.tools.templates.core.internal.Activator
Bundle-Version: 1.1.200.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources
Bundle-RequiredExecutionEnvironment: JavaSE-1.8

View file

@ -1,34 +0,0 @@
/*******************************************************************************
* Copyright (c) 2016 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tools.templates.core.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;
}
@Override
public void start(BundleContext bundleContext) throws Exception {
Activator.context = bundleContext;
}
@Override
public void stop(BundleContext bundleContext) throws Exception {
Activator.context = null;
}
}