cleanup code

This commit is contained in:
三丙
2024-10-10 11:08:11 +08:00
parent 516fe1d091
commit 344e23d80e
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ public abstract class ProtocolBootstrap implements HealthIndicator {
if (tcpCfg != null) {
listener = new TcpListener<>(protocolName, tcpCfg, messageProcessor(), protocolContext.getStatsFactory());
listener = new TcpListener(protocolName, tcpCfg, messageProcessor(), protocolContext.getStatsFactory());
}
_init();

View File

@@ -29,7 +29,7 @@ import sanbing.jcpp.protocol.listener.Listener;
* @author baigod
*/
@Slf4j
public class TcpListener<T> extends Listener {
public class TcpListener extends Listener {
private Channel serverChannel;
private EventLoopGroup bossGroup;