Thread-safety: make protected fields final

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@797438 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-07-24 13:18:59 +00:00
parent 35066eaff7
commit 3629ccf108
1 changed files with 2 additions and 2 deletions

View File

@ -70,10 +70,10 @@ public class ConnPoolByRoute extends AbstractConnPool {
protected final ClientConnectionOperator operator;
/** The list of free connections */
protected Queue<BasicPoolEntry> freeConnections;
protected final Queue<BasicPoolEntry> freeConnections;
/** The list of WaitingThreads waiting for a connection */
protected Queue<WaitingThread> waitingThreads;
protected final Queue<WaitingThread> waitingThreads;
/**
* A map of route-specific pools.