Make unchanging fields final

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@765676 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-04-16 16:16:54 +00:00
parent 5c462fc22f
commit 62a4114ace
1 changed files with 3 additions and 3 deletions

View File

@ -40,9 +40,9 @@ import java.util.concurrent.locks.Lock;
*/
public class AwaitThread extends Thread {
protected WaitingThread wait_object;
protected Lock wait_lock;
protected Date wait_deadline;
protected final WaitingThread wait_object;
protected final Lock wait_lock;
protected final Date wait_deadline;
protected volatile boolean waiting;
protected volatile Throwable exception;