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