From 5fa5d9567d49f1a17f8314a1f2117f7bf36c9b60 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Tue, 11 Jun 2019 02:05:54 -0400 Subject: [PATCH] Remove unused NativeConstants --- .../natives/util/NativeConstants.java | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 native/src/main/java/com/velocitypowered/natives/util/NativeConstants.java diff --git a/native/src/main/java/com/velocitypowered/natives/util/NativeConstants.java b/native/src/main/java/com/velocitypowered/natives/util/NativeConstants.java deleted file mode 100644 index f96656125..000000000 --- a/native/src/main/java/com/velocitypowered/natives/util/NativeConstants.java +++ /dev/null @@ -1,12 +0,0 @@ -package com.velocitypowered.natives.util; - -public class NativeConstants { - /** - * The default preferred output buffer size for zlib. - */ - public static final int ZLIB_BUFFER_SIZE = 8192; - - private NativeConstants() { - throw new AssertionError(); - } -}