Skip to content

Commit

Permalink
INTERNAL: Remove TranscoderService.
Browse files Browse the repository at this point in the history
  • Loading branch information
brido4125 committed Jan 24, 2024
1 parent f080ec4 commit ac12ebf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 182 deletions.
5 changes: 0 additions & 5 deletions src/main/java/net/spy/memcached/MemcachedClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
import net.spy.memcached.ops.OperationStatus;
import net.spy.memcached.ops.StatsOperation;
import net.spy.memcached.ops.StoreType;
import net.spy.memcached.transcoders.TranscodeService;
import net.spy.memcached.transcoders.Transcoder;

/**
Expand Down Expand Up @@ -132,8 +131,6 @@ public class MemcachedClient extends SpyThread

protected final Transcoder<Object> transcoder;

private final TranscodeService tcService;

private final AuthDescriptor authDescriptor;

private final byte delimiter;
Expand Down Expand Up @@ -214,7 +211,6 @@ public MemcachedClient(ConnectionFactory cf, String name, List<InetSocketAddress
throw new IllegalArgumentException(
"Operation timeout must be positive.");
}
tcService = new TranscodeService(cf.isDaemon());
transcoder = cf.getDefaultTranscoder();
opFact = cf.getOperationFactory();
assert opFact != null : "Connection factory failed to make op factory";
Expand Down Expand Up @@ -2098,7 +2094,6 @@ public boolean shutdown(long timeout, TimeUnit unit) {
running = false;
conn.wakeUpSelector();
setName(baseName + " - SHUTTING DOWN (informed client)");
tcService.shutdown();
}
return rv;
}
Expand Down
117 changes: 0 additions & 117 deletions src/main/java/net/spy/memcached/transcoders/TranscodeService.java

This file was deleted.

This file was deleted.

0 comments on commit ac12ebf

Please sign in to comment.