Add final modifier to private fields.

This commit is contained in:
Gary Gregory 2017-07-12 17:12:52 -07:00
parent cd2c36194f
commit 6156eb1f0f
1 changed files with 1 additions and 1 deletions

View File

@ -770,7 +770,7 @@ final class NTLMEngineImpl implements NTLMEngine {
final private byte[] exportedSessionKey;
private byte[] signingKey;
private byte[] sealingKey;
private Cipher rc4;
private final Cipher rc4;
final Mode mode;
final private boolean isConnection;
int sequenceNumber = 0;