Skip to content

Commit

Permalink
Cleanup Snappy
Browse files Browse the repository at this point in the history
Motivation:

314d59b did introduce some static fields that are not used.

Modifications:

Cleanup unused fields / imports

Result:

Cleanup
  • Loading branch information
normanmaurer committed Mar 28, 2024
1 parent 7f23c95 commit fee3c39
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@
import io.netty.util.concurrent.FastThreadLocal;
import io.netty.util.internal.MathUtil;
import io.netty.util.internal.SystemPropertyUtil;
import io.netty.util.internal.logging.InternalLogger;
import io.netty.util.internal.logging.InternalLoggerFactory;

import java.util.Arrays;
import java.util.Locale;

/**
* Uncompresses an input {@link ByteBuf} encoded with Snappy compression into an
Expand All @@ -33,8 +30,6 @@
*/
public final class Snappy {

private static final InternalLogger logger = InternalLoggerFactory.getInstance(Snappy.class);

private static final int MAX_HT_SIZE = 1 << 14;
private static final int MIN_COMPRESSIBLE_BYTES = 15;

Expand Down

0 comments on commit fee3c39

Please sign in to comment.