Remove user prefix from NettyServerBuilder.userBossEventLoopGroup(). Fixes #73

This commit is contained in:
Jakob Buchgraber 2015-02-20 13:39:39 -08:00
parent bd81a58c42
commit c6c0a3bf69
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public final class NettyServerBuilder extends AbstractServerBuilder<NettyServerB
* A simple solution to this problem is to call {@link ServerImpl#awaitTerminated()} to
* keep the main thread alive until the server has terminated.
*/
public NettyServerBuilder userBossEventLoopGroup(EventLoopGroup group) {
public NettyServerBuilder bossEventLoopGroup(EventLoopGroup group) {
this.userBossEventLoopGroup = group;
return this;
}