From ae850443ad4d9bb483a3f7d9fe8a0bc9dd6da825 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Sun, 30 Dec 2018 06:50:44 -0500 Subject: [PATCH] Fix build due to checkstyle --- .../velocitypowered/natives/encryption/VelocityCipherTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/src/test/java/com/velocitypowered/natives/encryption/VelocityCipherTest.java b/native/src/test/java/com/velocitypowered/natives/encryption/VelocityCipherTest.java index 29806d4a3..d7328c922 100644 --- a/native/src/test/java/com/velocitypowered/natives/encryption/VelocityCipherTest.java +++ b/native/src/test/java/com/velocitypowered/natives/encryption/VelocityCipherTest.java @@ -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