Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions src/main/java/io/lettuce/core/codec/Utf8StringCodec.java

This file was deleted.

58 changes: 0 additions & 58 deletions src/test/java/io/lettuce/core/Utf8StringCodecIntegrationTests.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import io.lettuce.core.RedisException;
import io.lettuce.core.codec.RedisCodec;
import io.lettuce.core.codec.StringCodec;
import io.lettuce.core.codec.Utf8StringCodec;
import io.lettuce.core.output.*;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
Expand Down
45 changes: 0 additions & 45 deletions src/test/jmh/io/lettuce/core/codec/Utf8StringCodecBenchmark.java

This file was deleted.

3 changes: 1 addition & 2 deletions src/test/jmh/io/lettuce/core/protocol/CommandBenchmark.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import io.lettuce.core.codec.ByteArrayCodec;
import io.lettuce.core.codec.RedisCodec;
import io.lettuce.core.codec.StringCodec;
import io.lettuce.core.codec.Utf8StringCodec;
import io.lettuce.core.output.ValueOutput;

/**
Expand All @@ -26,7 +25,7 @@
public class CommandBenchmark {

private static final ByteArrayCodec BYTE_ARRAY_CODEC = new ByteArrayCodec();
private static final Utf8StringCodec OLD_STRING_CODEC = new Utf8StringCodec();
private static final StringCodec OLD_STRING_CODEC = StringCodec.UTF8;
private static final StringCodec NEW_STRING_CODEC = new StringCodec(StandardCharsets.UTF_8);
private static final EmptyByteBuf DUMMY_BYTE_BUF = new EmptyByteBuf();

Expand Down