Relax ServerBootstrap type constraint to support UDT properly

This commit is contained in:
Trustin Lee 2013-01-30 22:04:20 +09:00
parent 05d16cd361
commit 33c9f3f1e5

View File

@ -43,7 +43,7 @@ import java.util.Map.Entry;
* {@link Bootstrap} sub-class which allows easy bootstrap of {@link ServerChannel}
*
*/
public final class ServerBootstrap extends AbstractBootstrap<ServerBootstrap, ServerChannel> {
public final class ServerBootstrap extends AbstractBootstrap<ServerBootstrap, Channel> {
private static final InternalLogger logger = InternalLoggerFactory.getInstance(ServerBootstrap.class);