Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsliebig2007-11-06 14:59:42 +0000
committersliebig2007-11-06 14:59:42 +0000
commit8186f1aa22ab54e2009144476f5ac1d6a31bd150 (patch)
treed4f18044a3ba91ed0b49b6763a95d6ae8da49dfc /bundles/org.eclipse.equinox.p2.sar
parent5fada0712348096c02f2d47309aee616e9960c3e (diff)
downloadrt.equinox.p2-8186f1aa22ab54e2009144476f5ac1d6a31bd150.tar.gz
rt.equinox.p2-8186f1aa22ab54e2009144476f5ac1d6a31bd150.tar.xz
rt.equinox.p2-8186f1aa22ab54e2009144476f5ac1d6a31bd150.zip
removed unnecessary activator
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.sar')
-rw-r--r--bundles/org.eclipse.equinox.p2.sar/META-INF/MANIFEST.MF1
-rw-r--r--bundles/org.eclipse.equinox.p2.sar/src/org/eclipse/equinox/p2/sar/Activator.java34
2 files changed, 0 insertions, 35 deletions
diff --git a/bundles/org.eclipse.equinox.p2.sar/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.p2.sar/META-INF/MANIFEST.MF
index 681f6f8fe..1419c801a 100644
--- a/bundles/org.eclipse.equinox.p2.sar/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.equinox.p2.sar/META-INF/MANIFEST.MF
@@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
Bundle-Name: Sar Plug-in
Bundle-SymbolicName: org.eclipse.equinox.p2.sar
Bundle-Version: 0.1.0
-Bundle-Activator: org.eclipse.equinox.p2.sar.Activator
Import-Package: org.osgi.framework;version="1.3.0"
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: CDC-1.1/Foundation-1.1,
diff --git a/bundles/org.eclipse.equinox.p2.sar/src/org/eclipse/equinox/p2/sar/Activator.java b/bundles/org.eclipse.equinox.p2.sar/src/org/eclipse/equinox/p2/sar/Activator.java
deleted file mode 100644
index 9874234f0..000000000
--- a/bundles/org.eclipse.equinox.p2.sar/src/org/eclipse/equinox/p2/sar/Activator.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 compeople AG 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:
- * compeople AG (Stefan Liebig) - initial API and implementation
- *******************************************************************************/
-package org.eclipse.equinox.p2.sar;
-
-import org.osgi.framework.BundleActivator;
-import org.osgi.framework.BundleContext;
-
-public class Activator implements BundleActivator {
-
- /*
- * (non-Javadoc)
- *
- * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
- */
- public void start(BundleContext context) throws Exception {
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
- */
- public void stop(BundleContext context) throws Exception {
- }
-
-}

Back to the top