Self-referential type parameter fix

This commit is contained in:
Trustin Lee 2013-02-11 14:42:29 +09:00
parent a7b5d45bdf
commit dea1fde604

View File

@ -35,7 +35,7 @@ import java.util.Map;
* method-chaining to provide an easy way to configure the {@link AbstractBootstrap}.
*
*/
abstract class AbstractBootstrap<B extends AbstractBootstrap<?, C>, C extends Channel> implements Cloneable {
abstract class AbstractBootstrap<B extends AbstractBootstrap<B, C>, C extends Channel> implements Cloneable {
private volatile EventLoopGroup group;
private volatile ChannelFactory<? extends C> channelFactory;