Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Ross2013-08-21 15:30:42 +0000
committerJohn Ross2013-08-21 17:54:57 +0000
commitd9439a16cf6015e8c9c318c4c6e7533574569a81 (patch)
treee81b45bbf58882df073bf8a70e537fbf41c4903b
parent9f4910e67ccc767a9b75c104e00a1b23968b5bb6 (diff)
downloadrt.equinox.bundles-d9439a16cf6015e8c9c318c4c6e7533574569a81.tar.gz
rt.equinox.bundles-d9439a16cf6015e8c9c318c4c6e7533574569a81.tar.xz
rt.equinox.bundles-d9439a16cf6015e8c9c318c4c6e7533574569a81.zip
[Bug 415461] The value of the local variable config is not used
Update copyright.
-rw-r--r--bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationAdminTest.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationAdminTest.java b/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationAdminTest.java
index 1cdc30e8c..1c06c9cc1 100644
--- a/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationAdminTest.java
+++ b/bundles/org.eclipse.equinox.cm.test/src/org/eclipse/equinox/cm/test/ConfigurationAdminTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2008 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
@@ -44,7 +44,7 @@ public class ConfigurationAdminTest extends TestCase {
public void testCreateConfigNullPid() throws Exception {
try {
- Configuration config = cm.getConfiguration(null);
+ cm.getConfiguration(null);
} catch (IllegalArgumentException e) {
return;
}
@@ -58,7 +58,7 @@ public class ConfigurationAdminTest extends TestCase {
public void testCreateConfigNullPidWithLocation() throws Exception {
try {
- Configuration config = cm.getConfiguration(null, null);
+ cm.getConfiguration(null, null);
} catch (IllegalArgumentException e) {
return;
}
@@ -96,7 +96,7 @@ public class ConfigurationAdminTest extends TestCase {
public void testCreateFactoryConfigNullPid() throws Exception {
try {
- Configuration config = cm.createFactoryConfiguration(null);
+ cm.createFactoryConfiguration(null);
} catch (IllegalArgumentException e) {
return;
}
@@ -110,7 +110,7 @@ public class ConfigurationAdminTest extends TestCase {
public void testCreateFactoryConfigNullPidWithLocation() throws Exception {
try {
- Configuration config = cm.createFactoryConfiguration(null, null);
+ cm.createFactoryConfiguration(null, null);
} catch (IllegalArgumentException e) {
return;
}

Back to the top