Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/RepoValidator.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/RepoValidator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/RepoValidator.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/RepoValidator.java
index 4086ea61c..fadcee82c 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/RepoValidator.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/full/RepoValidator.java
@@ -44,7 +44,7 @@ public class RepoValidator extends AbstractProvisioningTest {
assertNotNull("Unable to aquire IMetadataManager service.", manager);
IMetadataRepository repository = manager.loadRepository(repositoryLocation, null);
- Map properties = new HashMap();
+ Map<String, String> properties = new HashMap<>();
properties.put("osgi.os", context.getProperty("osgi.os"));
properties.put("osgi.ws", context.getProperty("osgi.ws"));
properties.put("osgi.arch", context.getProperty("osgi.arch"));

Back to the top