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 --- .../src/com/netscape/cmscore/connector/HttpConnFactory.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'base/common/src/com/netscape/cmscore/connector/HttpConnFactory.java') diff --git a/base/common/src/com/netscape/cmscore/connector/HttpConnFactory.java b/base/common/src/com/netscape/cmscore/connector/HttpConnFactory.java index 6e4ec113f..c5e3312e1 100644 --- a/base/common/src/com/netscape/cmscore/connector/HttpConnFactory.java +++ b/base/common/src/com/netscape/cmscore/connector/HttpConnFactory.java @@ -38,18 +38,13 @@ public class HttpConnFactory { private int mNumConns = 0; // number of available conns in array private int mTotal = 0; // total num conns - private IHttpConnection mMasterConn = null; // master connection object. private IHttpConnection mConns[]; - private IAuthority mSource = null; + @SuppressWarnings("unused") + private IAuthority mSource; private IRemoteAuthority mDest = null; private String mNickname = ""; private int mTimeout = 0; - /** - * default value for the above at init time. - */ - private boolean mDefErrorIfDown = false; - /** * Constructor for initializing from the config store. * must be followed by init(IConfigStore) -- cgit