Make some ivars final.
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1726894 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
75bdb83e1a
commit
9268258fc7
|
@ -1541,9 +1541,9 @@ final class NTLMEngineImpl implements NTLMEngine {
|
|||
* resources by Karl Wright
|
||||
*/
|
||||
static class HMACMD5 {
|
||||
protected byte[] ipad;
|
||||
protected byte[] opad;
|
||||
protected MessageDigest md5;
|
||||
protected final byte[] ipad;
|
||||
protected final byte[] opad;
|
||||
protected final MessageDigest md5;
|
||||
|
||||
HMACMD5(final byte[] input) throws NTLMEngineException {
|
||||
byte[] key = input;
|
||||
|
|
Loading…
Reference in New Issue