Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Ross2013-08-21 15:27:32 +0000
committerJohn Ross2013-08-21 17:54:55 +0000
commit9f4910e67ccc767a9b75c104e00a1b23968b5bb6 (patch)
tree7fc0860e982bc862bd63488a13448606b00a17e5 /bundles/org.eclipse.equinox.cm.test
parent3636378bb84b70f6493de73531a28144c50f3ec0 (diff)
downloadrt.equinox.bundles-9f4910e67ccc767a9b75c104e00a1b23968b5bb6.tar.gz
rt.equinox.bundles-9f4910e67ccc767a9b75c104e00a1b23968b5bb6.tar.xz
rt.equinox.bundles-9f4910e67ccc767a9b75c104e00a1b23968b5bb6.zip
[Bug 415461] The value of the local variable plugin2 is not used
This has the side effect of fixing bug 333581. Update copyright.
Diffstat (limited to 'bundles/org.eclipse.equinox.cm.test')
-rw-r--r--bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationPluginTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationPluginTest.java b/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationPluginTest.java
index 29c72ac02..287ead8cc 100644
--- a/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationPluginTest.java
+++ b/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationPluginTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others
+ * Copyright (c) 2007, 2013 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
@@ -194,7 +194,7 @@ public class ConfigurationPluginTest extends TestCase {
}
};
- ServiceRegistration pluginReg2 = Activator.getBundleContext().registerService(ConfigurationPlugin.class.getName(), plugin, null);
+ ServiceRegistration pluginReg2 = Activator.getBundleContext().registerService(ConfigurationPlugin.class.getName(), plugin2, null);
ManagedService ms = new ManagedService() {
public void updated(Dictionary properties) throws ConfigurationException {

Back to the top