Remove 'this'.

This commit is contained in:
akwizgran
2017-07-17 10:16:50 +01:00
parent ecb62f00d4
commit 5822eb7808

View File

@@ -124,7 +124,7 @@ class StreamEncrypterImpl implements StreamEncrypter {
System.arraycopy(frameKey.getBytes(), 0, streamHeaderPlaintext,
INT_16_BYTES + INT_64_BYTES, SecretKey.LENGTH);
byte[] streamHeaderCiphertext = new byte[STREAM_HEADER_LENGTH];
System.arraycopy(this.streamHeaderNonce, 0, streamHeaderCiphertext, 0,
System.arraycopy(streamHeaderNonce, 0, streamHeaderCiphertext, 0,
STREAM_HEADER_NONCE_LENGTH);
// Encrypt and authenticate the stream header key
try {