summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java')
-rw-r--r--pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java b/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java
index d0dedafa7..cd63841eb 100644
--- a/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java
+++ b/pki/base/common/src/com/netscape/cmscore/notification/EmailResolverKeys.java
@@ -80,14 +80,14 @@ public class EmailResolverKeys implements IEmailResolverKeys {
}
/**
- * returns an enumeration of the keys in this key
+ * returns an enumeration of the key names in this key
* set. Use the Enumeration methods on the returned object to
* fetch the elements sequentially.
*
* @return an enumeration of the values in this key set
* @see java.util.Enumeration
*/
- public Enumeration<Object> getElements() {
- return mKeys.elements();
+ public Enumeration<String> getElements() {
+ return mKeys.keys();
}
}