From 3d0ed106fc22c338457f714b78a2d2544f0a1390 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Thu, 16 Jul 2009 08:11:51 +0000 Subject: [PATCH] * LocalServerChannel is not a LocalChannel * LocalChannel.getConfig() is not necessary --- src/main/java/org/jboss/netty/channel/local/LocalChannel.java | 2 -- .../java/org/jboss/netty/channel/local/LocalServerChannel.java | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/local/LocalChannel.java b/src/main/java/org/jboss/netty/channel/local/LocalChannel.java index 8d42747ded..c3165afd20 100644 --- a/src/main/java/org/jboss/netty/channel/local/LocalChannel.java +++ b/src/main/java/org/jboss/netty/channel/local/LocalChannel.java @@ -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(); } diff --git a/src/main/java/org/jboss/netty/channel/local/LocalServerChannel.java b/src/main/java/org/jboss/netty/channel/local/LocalServerChannel.java index e4278d1ae1..7c740f56af 100644 --- a/src/main/java/org/jboss/netty/channel/local/LocalServerChannel.java +++ b/src/main/java/org/jboss/netty/channel/local/LocalServerChannel.java @@ -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(); }