diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-01-30 06:15:20 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-01-30 06:15:20 -0800 |
commit | f3c3029ff651d294a1a0df0e79e72771307310fc (patch) | |
tree | 1f061a96f5f46051b6daf45ccbdb63ebd2cdd746 /java/src/IceInternal/PropertiesAdminI.java | |
parent | Fixed and moved fixVersion.py/fixCopyright.py (diff) | |
download | ice-f3c3029ff651d294a1a0df0e79e72771307310fc.tar.bz2 ice-f3c3029ff651d294a1a0df0e79e72771307310fc.tar.xz ice-f3c3029ff651d294a1a0df0e79e72771307310fc.zip |
using Java5 types in Ice core; general cleanup
Diffstat (limited to 'java/src/IceInternal/PropertiesAdminI.java')
-rw-r--r-- | java/src/IceInternal/PropertiesAdminI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceInternal/PropertiesAdminI.java b/java/src/IceInternal/PropertiesAdminI.java index 950cf6e54f7..094c9eaf6ee 100644 --- a/java/src/IceInternal/PropertiesAdminI.java +++ b/java/src/IceInternal/PropertiesAdminI.java @@ -22,10 +22,10 @@ class PropertiesAdminI extends Ice._PropertiesAdminDisp return _properties.getProperty(name); } - public java.util.TreeMap + public java.util.TreeMap<String, String> getPropertiesForPrefix(String name, Ice.Current current) { - return new java.util.TreeMap(_properties.getPropertiesForPrefix(name)); + return new java.util.TreeMap<String, String>(_properties.getPropertiesForPrefix(name)); } private final Ice.Properties _properties; |