Disabled warnings for ChannelActive when used via a LocalChannel

This commit is contained in:
nathan 2016-03-13 16:16:13 +01:00
parent 0d185e4de2
commit 5b68fde15d

View File

@ -79,6 +79,12 @@ class RegistrationLocalHandler<C extends Connection> extends RegistrationHandler
}
}
@Override
public
void channelActive(ChannelHandlerContext context) throws Exception {
// not used (so we prevent the warnings from the super class)
}
// this SHOULDN'T ever happen, but we might shutdown in the middle of registration
@Override
public final