Better explanation when ChannelPipelineCoverage is missing

This commit is contained in:
Trustin Lee 2009-04-17 08:18:28 +00:00
parent 69ac7d174c
commit 14c7e67a0b

View File

@ -725,8 +725,9 @@ public class DefaultChannelPipeline implements ChannelPipeline {
"' does not have a '" +
ChannelPipelineCoverage.class.getSimpleName() +
"' annotation with its class declaration. " +
"It is recommended to add the annotation to tell if " +
"one handler instance can handle more than one pipeline " +
"It is strongly recommended to add the annotation " +
"for a documentation purpose to tell if a single " +
"handler instance can handle more than one pipeline " +
"(\"" + ALL + "\") or not (\"" + ONE + "\")");
} else {
String coverageValue = coverage.value();