Fix a compilation error

This commit is contained in:
Trustin Lee 2012-06-03 18:52:18 -07:00
parent f3734e1eb9
commit 1e7c65c12e

View File

@ -76,8 +76,9 @@ class EmbeddedChannel extends AbstractChannel {
}
@Override
protected void doRegister() throws Exception {
protected Runnable doRegister() throws Exception {
state = 1;
return null;
}
@Override