Make unchanging fields final

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@765675 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-04-16 16:15:51 +00:00
parent 30d394e769
commit 5c462fc22f

View File

@ -51,10 +51,10 @@ public class BasicEofSensorWatcher implements EofSensorWatcher {
/** The connection to auto-release. */
protected ManagedClientConnection managedConn;
protected final ManagedClientConnection managedConn;
/** Whether to keep the connection alive. */
protected boolean attemptReuse;
protected final boolean attemptReuse;