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:
Gary D. Gregory 2016-01-26 20:39:09 +00:00
parent 75bdb83e1a
commit 9268258fc7
1 changed files with 3 additions and 3 deletions

View File

@ -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;