removed double init of params

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@557674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Roland Weber 2007-07-19 16:23:09 +00:00
parent 2b8720b521
commit bfb47ec954
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ public class SingleClientConnManager implements ClientConnectionManager {
protected SchemeRegistry schemeRegistry;
/** The parameters of this connection manager. */
protected HttpParams params = new BasicHttpParams();
protected HttpParams params;
/** The operator for opening and updating connections. */
protected ClientConnectionOperator connOperator;

View File

@ -108,7 +108,7 @@ public class ThreadSafeClientConnManager
protected SchemeRegistry schemeRegistry;
/** The parameters of this connection manager. */
private HttpParams params = new BasicHttpParams();
private HttpParams params;
/** The pool of connections being managed. */