Make ServerBootstrap final

- Related: #997
This commit is contained in:
Trustin Lee 2013-01-30 21:14:23 +09:00
parent 7c50c1e2e6
commit 86135a4080

View File

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