summaryrefslogtreecommitdiffstats
path: root/base/ocsp
diff options
context:
space:
mode:
Diffstat (limited to 'base/ocsp')
-rw-r--r--base/ocsp/src/com/netscape/ocsp/OCSPAuthority.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/ocsp/src/com/netscape/ocsp/OCSPAuthority.java b/base/ocsp/src/com/netscape/ocsp/OCSPAuthority.java
index 8d2176c83..348a1b2f8 100644
--- a/base/ocsp/src/com/netscape/ocsp/OCSPAuthority.java
+++ b/base/ocsp/src/com/netscape/ocsp/OCSPAuthority.java
@@ -142,7 +142,7 @@ public class OCSPAuthority implements IOCSPAuthority, IOCSPService, ISubsystem,
Enumeration<String> ids = storeConfig.getSubStoreNames();
while (ids.hasMoreElements()) {
- String id = (String) ids.nextElement();
+ String id = ids.nextElement();
String className = mConfig.getString(PROP_STORE + "." + id + ".class", null);
IOCSPStore store = (IOCSPStore) Class.forName(className).newInstance();