Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-09-19 15:22:56 +0000
committerAlexander Kurtakov2017-09-19 15:25:39 +0000
commitc4f4dcfa6ee5a5d9a4e4b8e426cea5cd37cd4e2e (patch)
treed24b2354ab7b4e722ca5c8f303d692814e486f20 /bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
parent07de08ae780ef98f8f35b711c583cf6c193574d8 (diff)
downloadrt.equinox.p2-I20170919-2000.tar.gz
rt.equinox.p2-I20170919-2000.tar.xz
rt.equinox.p2-I20170919-2000.zip
Bug 522466 - Fix generification warnings in p2.testsI20170920-0100I20170919-2000
Yet another round. Change-Id: Idfcc6a717588ea423249b45ca37c18fc832aaad1 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
index bd1b02eae..f319d724b 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/AbstractSimpleConfiguratorTest.java
@@ -88,7 +88,7 @@ public abstract class AbstractSimpleConfiguratorTest extends AbstractProvisionin
osgiBundleDevPath = new URL(osgiBundle, "bin/");
}
- Map frameworkProperties = new HashMap();
+ Map<String, String> frameworkProperties = new HashMap<>();
// note that any properties you do not want to be inherited from the hosting Equinox will need
// to be nulled out. Otherwise you will pick them up from the hosting env.
frameworkProperties.put("osgi.framework", null);

Back to the top