Made LocalChannelConfig invisible to users

This commit is contained in:
Trustin Lee 2009-02-09 05:26:26 +00:00
parent 35730de7cb
commit 233e85f63c

View File

@ -26,6 +26,7 @@ import static org.jboss.netty.channel.Channels.*;
import java.util.Queue; import java.util.Queue;
import org.jboss.netty.channel.AbstractChannel; import org.jboss.netty.channel.AbstractChannel;
import org.jboss.netty.channel.ChannelConfig;
import org.jboss.netty.channel.ChannelFactory; import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline; import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink; import org.jboss.netty.channel.ChannelSink;
@ -55,7 +56,7 @@ public class LocalChannel extends AbstractChannel {
fireChannelOpen(this); fireChannelOpen(this);
} }
public LocalChannelConfig getConfig() { public ChannelConfig getConfig() {
return config; return config;
} }