Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/internal/Activator.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/internal/Activator.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/internal/Activator.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/internal/Activator.java
index b92383caec0..948c9bf7439 100644
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/internal/Activator.java
+++ b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/internal/Activator.java
@@ -109,9 +109,6 @@ public class Activator implements BundleActivator {
bundleContext.registerService(TestEnvironmentInterface.class.getName(), env, new Hashtable());
}
- /**
- *
- */
public void unregisterTestEnvironment() {
if (testEnvironmentRegistration != null) {
testEnvironmentRegistration.unregister();
@@ -119,10 +116,6 @@ public class Activator implements BundleActivator {
}
}
- /**
- * @param clazz
- * @param customizer
- */
public ServiceTracker getServiceTracker(String clazz, ServiceTrackerCustomizer customizer) {
ServiceTracker tracker = findServiceTracker(clazz, customizer);
if (tracker == null) {

Back to the top