Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2015-03-27 12:41:19 +0000
committerThomas Watson2015-03-27 12:49:07 +0000
commitb92a7488c0f1c9d44ff7b8bcbc24b76d57880515 (patch)
treeccc243016e3bcc833a13e7a49523eee209c30933 /bundles/org.eclipse.equinox.ds.tests
parent0b2b0c57a2fa628b8c2ccb6fedb80d43a68657a5 (diff)
downloadrt.equinox.bundles-b92a7488c0f1c9d44ff7b8bcbc24b76d57880515.tar.gz
rt.equinox.bundles-b92a7488c0f1c9d44ff7b8bcbc24b76d57880515.tar.xz
rt.equinox.bundles-b92a7488c0f1c9d44ff7b8bcbc24b76d57880515.zip
Bug 463273 - 3 compile warnings in official build:
org.eclipse.equinox.ds.tests
Diffstat (limited to 'bundles/org.eclipse.equinox.ds.tests')
-rw-r--r--bundles/org.eclipse.equinox.ds.tests/bundles_src/tb16/org/eclipse/equinox/ds/tests/tb16/TargetProperties.java3
-rw-r--r--bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java3
-rw-r--r--bundles/org.eclipse.equinox.ds.tests/bundles_src/tb7/org/eclipse/equinox/ds/tests/tb7/DynamicCircuit2.java5
3 files changed, 3 insertions, 8 deletions
diff --git a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb16/org/eclipse/equinox/ds/tests/tb16/TargetProperties.java b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb16/org/eclipse/equinox/ds/tests/tb16/TargetProperties.java
index ba8e21dd5..f2bbf6700 100644
--- a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb16/org/eclipse/equinox/ds/tests/tb16/TargetProperties.java
+++ b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb16/org/eclipse/equinox/ds/tests/tb16/TargetProperties.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 1997-2009 by ProSyst Software GmbH
+ * Copyright (c) 1997-2015 by ProSyst Software GmbH
* http://www.prosyst.com
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
@@ -13,7 +13,6 @@ package org.eclipse.equinox.ds.tests.tb16;
import java.util.Dictionary;
import java.util.Hashtable;
-import java.util.Properties;
import org.eclipse.equinox.ds.tests.tbc.PropertiesProvider;
import org.eclipse.equinox.ds.tests.tbc.ComponentContextProvider;
diff --git a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java
index 51a6c4326..979832a2c 100644
--- a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java
+++ b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb17/org/eclipse/equinox/ds/tests/tb17/Worker.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 1997-2009 by ProSyst Software GmbH
+ * Copyright (c) 1997-2015 by ProSyst Software GmbH
* http://www.prosyst.com
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
@@ -13,7 +13,6 @@ package org.eclipse.equinox.ds.tests.tb17;
import java.util.Dictionary;
import java.util.Hashtable;
-import java.util.Properties;
import org.eclipse.equinox.ds.tests.tbc.PropertiesProvider;
import org.eclipse.equinox.ds.tests.tbc.ComponentContextProvider;
diff --git a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb7/org/eclipse/equinox/ds/tests/tb7/DynamicCircuit2.java b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb7/org/eclipse/equinox/ds/tests/tb7/DynamicCircuit2.java
index d233af450..c2cd73d88 100644
--- a/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb7/org/eclipse/equinox/ds/tests/tb7/DynamicCircuit2.java
+++ b/bundles/org.eclipse.equinox.ds.tests/bundles_src/tb7/org/eclipse/equinox/ds/tests/tb7/DynamicCircuit2.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 1997-2009 by ProSyst Software GmbH
+ * Copyright (c) 1997-2015 by ProSyst Software GmbH
* http://www.prosyst.com
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
@@ -20,15 +20,12 @@ import org.osgi.service.component.ComponentContext;
public class DynamicCircuit2 implements BoundTester {
private DynamicCircuit1 service;
- private ComponentContext ctxt;
private boolean boundObjectActivated = false;
public void activate(ComponentContext ctxt) {
- this.ctxt = ctxt;
}
public void deactivate(ComponentContext ctxt) {
- this.ctxt = null;
}
public int getBoundObjectsCount() {

Back to the top