summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/jobs
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/jobs')
-rw-r--r--pki/base/common/src/com/netscape/cms/jobs/AJobBase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java b/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
index 5b8176da2..4a70147de 100644
--- a/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
+++ b/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
@@ -71,8 +71,8 @@ public abstract class AJobBase implements IJob, Runnable {
protected String mItemForm = null;
protected String mSummarySenderEmail = null;
protected String mSummaryReceiverEmail = null;
- protected Hashtable mContentParams = new Hashtable();
- protected Hashtable mItemParams = new Hashtable();
+ protected Hashtable<String, Object> mContentParams = new Hashtable<String, Object>();
+ protected Hashtable<String, Object> mItemParams = new Hashtable<String, Object>();
public AJobBase() {
}