From 6f7f722bfbfc7bbb93b4e0ea9a3fa4716cbfc849 Mon Sep 17 00:00:00 2001 From: R00tB33rMan <36140389+R00tB33rMan@users.noreply.github.com> Date: Fri, 9 Feb 2024 13:02:43 -0500 Subject: [PATCH] [ci skip] Remove duplicate space from NativeZlibInflate (#1240) --- .../velocitypowered/natives/compression/NativeZlibInflate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/src/main/java/com/velocitypowered/natives/compression/NativeZlibInflate.java b/native/src/main/java/com/velocitypowered/natives/compression/NativeZlibInflate.java index 2ad7bc41e..c2b10b3e4 100644 --- a/native/src/main/java/com/velocitypowered/natives/compression/NativeZlibInflate.java +++ b/native/src/main/java/com/velocitypowered/natives/compression/NativeZlibInflate.java @@ -28,6 +28,6 @@ class NativeZlibInflate { static native long free(long ctx); - static native boolean process(long ctx, long sourceAddress, int sourceLength, + static native boolean process(long ctx, long sourceAddress, int sourceLength, long destinationAddress, int destinationLength) throws DataFormatException; }