Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
Refactor CompressionCodec into utility class.
  • Loading branch information
mp911de committed Nov 24, 2018
1 parent 9d0c832 commit af7ece9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/io/lettuce/core/codec/CompressionCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
*
* @author Mark Paluch
*/
public class CompressionCodec {
public abstract class CompressionCodec {

private CompressionCodec() {
}

/**
* A {@link RedisCodec} that compresses values from a delegating {@link RedisCodec}.
Expand Down

0 comments on commit af7ece9

Please sign in to comment.