summaryrefslogtreecommitdiffstats
path: root/base/server/cms/src/com/netscape/cms/authentication
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2014-01-28 11:21:44 -0500
committerAde Lee <alee@redhat.com>2014-02-04 13:36:46 -0500
commitfb77f3ce9f04dcaf6719497bd75edb076dd106b6 (patch)
tree1762c377bada7a8092e0645289481b5844a91863 /base/server/cms/src/com/netscape/cms/authentication
parent1b59b9cb9a9c3cae2eb904305fa6f3899d3dc820 (diff)
downloadpki-fb77f3ce9f04dcaf6719497bd75edb076dd106b6.tar.gz
pki-fb77f3ce9f04dcaf6719497bd75edb076dd106b6.tar.xz
pki-fb77f3ce9f04dcaf6719497bd75edb076dd106b6.zip
Fix some errors flagged by eclipse
Diffstat (limited to 'base/server/cms/src/com/netscape/cms/authentication')
-rw-r--r--base/server/cms/src/com/netscape/cms/authentication/UserPwdDirAuthentication.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/server/cms/src/com/netscape/cms/authentication/UserPwdDirAuthentication.java b/base/server/cms/src/com/netscape/cms/authentication/UserPwdDirAuthentication.java
index c5f0611a2..7bcab25d3 100644
--- a/base/server/cms/src/com/netscape/cms/authentication/UserPwdDirAuthentication.java
+++ b/base/server/cms/src/com/netscape/cms/authentication/UserPwdDirAuthentication.java
@@ -257,8 +257,8 @@ public class UserPwdDirAuthentication extends DirBasedAuthentication
/**
* Retrieves a list of names of the value parameter.
*/
- public Enumeration getValueNames() {
- Vector v = new Vector();
+ public Enumeration<String> getValueNames() {
+ Vector<String> v = new Vector<String>();
v.addElement(mAttr);
v.addElement(CRED_PWD);