From 7d88f4ee050856b8fef5f260cfe1b3aeec201fda Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Mon, 9 Apr 2012 13:56:59 -0500 Subject: Removed unused private fields. Most of unused private fields have been removed because they generate warnings in Eclipse. Some are kept because it might be useful later. Ticket #139 --- .../netscape/cmscore/authentication/SSLClientCertAuthentication.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java') diff --git a/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java b/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java index 4906d5c50..235362395 100644 --- a/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java +++ b/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java @@ -67,7 +67,6 @@ public class SSLClientCertAuthentication implements IAuthManager { private String mName = null; private String mImplName = null; private IConfigStore mConfig = null; - private String mRequestor = null; /* Holds configuration parameters accepted by this implementation. * This list is passed to the configuration console so configuration @@ -256,7 +255,6 @@ public class SSLClientCertAuthentication implements IAuthManager { if (ra != null) { queue = ra.getRequestQueue(); - mRequestor = IRequest.REQUESTOR_RA; } } catch (Exception e) { log(ILogger.LL_FAILURE, -- cgit