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:
parent
5c462fc22f
commit
62a4114ace
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue