Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-11-13 23:33:49 +0000
committerLars Vogel2015-11-17 14:47:14 +0000
commitde48777271c7bc8125368442763989a3bfc64f23 (patch)
tree996fa09d144500b3d2412dcc846a68ef0f2599e5
parent7e58adade42163fec6b483c0ff9eba54f9655473 (diff)
downloadeclipse.platform.ui-de48777271c7bc8125368442763989a3bfc64f23.tar.gz
eclipse.platform.ui-de48777271c7bc8125368442763989a3bfc64f23.tar.xz
eclipse.platform.ui-de48777271c7bc8125368442763989a3bfc64f23.zip
Bug 482184 - Remove empty Activator from org.eclipse.ui.forms
Change-Id: I736f69a59b9d40e6b83a3dca8fef4aa45b8ee1e9 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.forms/META-INF/MANIFEST.MF1
-rw-r--r--bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/FormsPlugin.java27
2 files changed, 0 insertions, 28 deletions
diff --git a/bundles/org.eclipse.ui.forms/META-INF/MANIFEST.MF b/bundles/org.eclipse.ui.forms/META-INF/MANIFEST.MF
index 3a5f9d5f005..eccd4811793 100644
--- a/bundles/org.eclipse.ui.forms/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.ui.forms/META-INF/MANIFEST.MF
@@ -25,4 +25,3 @@ Import-Package: com.ibm.icu.text,
org.xml.sax
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-ActivationPolicy: lazy
-Bundle-Activator: org.eclipse.ui.internal.forms.FormsPlugin
diff --git a/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/FormsPlugin.java b/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/FormsPlugin.java
deleted file mode 100644
index f1fc22667fd..00000000000
--- a/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/FormsPlugin.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008, 2015 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.ui.internal.forms;
-
-import org.eclipse.ui.internal.forms.widgets.FormsResources;
-import org.osgi.framework.BundleActivator;
-import org.osgi.framework.BundleContext;
-
-public class FormsPlugin implements BundleActivator {
-
- @Override
- public void stop(BundleContext context) throws Exception {
- FormsResources.shutdown();
- }
-
- @Override
- public void start(BundleContext context) throws Exception {
- }
-}

Back to the top