summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java b/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
index 7a275b1e6..7d0686378 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/ProfileContext.java
@@ -27,13 +27,13 @@ import com.netscape.certsrv.profile.IProfileContext;
* @version $Revision$, $Date$
*/
public class ProfileContext implements IProfileContext {
- private Hashtable m_Attrs = new Hashtable();
+ private Hashtable<String, String> m_Attrs = new Hashtable<String, String>();
public void set(String name, String value) {
m_Attrs.put(name, value);
}
public String get(String name) {
- return (String) m_Attrs.get(name);
+ return m_Attrs.get(name);
}
}