From 3f24e55923fc986af4c6a08b2b8d45704a905627 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Thu, 5 Apr 2012 15:08:18 -0500 Subject: Removed unnecessary type casts. Unnecessary type casts have been removed using Eclipse Quick Fix. Ticket #134 --- base/ocsp/src/com/netscape/ocsp/OCSPAuthority.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/ocsp') 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 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(); -- cgit