fix compile error introduced by previous commit

This commit is contained in:
Jakob Buchgraber 2015-04-07 13:00:24 -07:00
parent 105964bfac
commit ce860f9003
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ public class Http2Negotiator {
final ChannelInitializer<Channel> initializer = new ChannelInitializer<Channel>() {
@Override
public void initChannel(Channel ch) throws Exception {
ch.pipeline().addLast(handler);
ch.pipeline().addLast(handlers);
}
};
return new Negotiation() {