Fix build due to checkstyle

This commit is contained in:
Andrew Steinborn 2018-12-30 06:50:44 -05:00
parent 8588e7f1fe
commit ae850443ad

View File

@ -18,7 +18,7 @@ import org.junit.jupiter.api.Test;
class VelocityCipherTest {
private static final int ENCRYPT_DATA_SIZE = 1 << 14;
private static byte[] TEST_DATA = new byte[ENCRYPT_DATA_SIZE];;
private static byte[] TEST_DATA = new byte[ENCRYPT_DATA_SIZE];
private static final byte[] AES_KEY = new byte[16];
@BeforeAll