Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-04-04 18:42:09 +0000
committerThomas Watson2013-04-04 18:42:28 +0000
commitffa68696e2db4d2d95eb581a780af0d7d7227c8c (patch)
tree30aae77c92986a6be5cb0a10134e53dc4aa8d5a6 /bundles/org.eclipse.osgi.compatibility.state
parentdf6f3415ac61c006899aeed01580dc3caf2c0833 (diff)
downloadrt.equinox.framework-ffa68696e2db4d2d95eb581a780af0d7d7227c8c.tar.gz
rt.equinox.framework-ffa68696e2db4d2d95eb581a780af0d7d7227c8c.tar.xz
rt.equinox.framework-ffa68696e2db4d2d95eb581a780af0d7d7227c8c.zip
Allow Equinox construct to take Map<String, ?> as configuration
Diffstat (limited to 'bundles/org.eclipse.osgi.compatibility.state')
-rw-r--r--bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/compatibility/state/PlatformAdminImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/compatibility/state/PlatformAdminImpl.java b/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/compatibility/state/PlatformAdminImpl.java
index a792cf8a3..95cc2bfa0 100644
--- a/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/compatibility/state/PlatformAdminImpl.java
+++ b/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/compatibility/state/PlatformAdminImpl.java
@@ -87,8 +87,8 @@ public class PlatformAdminImpl implements PlatformAdmin {
return state;
}
- private Dictionary<String, String> asDictionary(Map<String, String> map) {
- return new Hashtable<String, String>(map);
+ private Dictionary<String, Object> asDictionary(Map<String, ?> map) {
+ return new Hashtable<String, Object>(map);
}
@Override

Back to the top