summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/property/PropertySet.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/property/PropertySet.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/property/PropertySet.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/property/PropertySet.java b/pki/base/common/src/com/netscape/certsrv/property/PropertySet.java
index 360477fe..f308a3e7 100644
--- a/pki/base/common/src/com/netscape/certsrv/property/PropertySet.java
+++ b/pki/base/common/src/com/netscape/certsrv/property/PropertySet.java
@@ -26,7 +26,7 @@ import java.util.Hashtable;
*/
public class PropertySet {
- private Hashtable mProperties = new Hashtable();
+ private Hashtable<String, IDescriptor> mProperties = new Hashtable<String, IDescriptor>();
public PropertySet()
{
@@ -37,7 +37,7 @@ public class PropertySet {
mProperties.put(name, desc);
}
- public Enumeration getNames()
+ public Enumeration<String> getNames()
{
return mProperties.keys();
}