diff options
author | Ade Lee <alee@redhat.com> | 2012-07-18 00:45:45 -0400 |
---|---|---|
committer | Ade Lee <alee@redhat.com> | 2012-07-18 00:47:32 -0400 |
commit | 70e45db3cfcf01b3b36fe619b03cf604e6666c91 (patch) | |
tree | fb96e9acafd3b5d717bf74e46d6d9cf685b15e88 | |
parent | 46d5f7838c3869a8037fe30116bac5d37549e38e (diff) | |
download | pki-70e45db3cfcf01b3b36fe619b03cf604e6666c91.tar.gz pki-70e45db3cfcf01b3b36fe619b03cf604e6666c91.tar.xz pki-70e45db3cfcf01b3b36fe619b03cf604e6666c91.zip |
Fix compilation error in fix to Bug: 837124
-rw-r--r-- | base/common/src/com/netscape/cms/ocsp/DefStore.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/common/src/com/netscape/cms/ocsp/DefStore.java b/base/common/src/com/netscape/cms/ocsp/DefStore.java index 4b88cadde..86e0c68b1 100644 --- a/base/common/src/com/netscape/cms/ocsp/DefStore.java +++ b/base/common/src/com/netscape/cms/ocsp/DefStore.java @@ -251,7 +251,7 @@ public class DefStore implements IDefStore, IExtendedPluginInfo { String thisUpdate = Long.toString( cp.getThisUpdate().getTime()); String filter = (oldCRLs)? "(!" + IRepositoryRecord.ATTR_SERIALNO + "=" + thisUpdate + ")": "ou=*"; - Enumeration e = searchRepository( caName, filter); + Enumeration<IRepositoryRecord> e = searchRepository( caName, filter); while (e != null && e.hasMoreElements()) { IRepositoryRecord r = e.nextElement(); |