* LocalServerChannel is not a LocalChannel

* LocalChannel.getConfig() is not necessary
This commit is contained in:
Trustin Lee 2009-07-16 08:11:51 +00:00
parent 4021ef4692
commit 3d0ed106fc
2 changed files with 0 additions and 4 deletions

View File

@ -23,7 +23,6 @@
package org.jboss.netty.channel.local;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelConfig;
/**
* A {@link Channel} for the local transport.
@ -34,7 +33,6 @@ import org.jboss.netty.channel.ChannelConfig;
* @version $Rev$, $Date$
*/
public interface LocalChannel extends Channel {
ChannelConfig getConfig();
LocalAddress getLocalAddress();
LocalAddress getRemoteAddress();
}

View File

@ -22,7 +22,6 @@
*/
package org.jboss.netty.channel.local;
import org.jboss.netty.channel.ChannelConfig;
import org.jboss.netty.channel.ServerChannel;
/**
@ -34,7 +33,6 @@ import org.jboss.netty.channel.ServerChannel;
* @version $Rev$, $Date$
*/
public interface LocalServerChannel extends ServerChannel {
ChannelConfig getConfig();
LocalAddress getLocalAddress();
LocalAddress getRemoteAddress();
}