From f7882d31e1a8dd57fe765f12af9e46515ae75302 Mon Sep 17 00:00:00 2001 From: Scott Mitchell Date: Tue, 1 Sep 2015 13:41:43 -0700 Subject: [PATCH] LocalChannel unused import Motivation: LocalChannel imports SingleThreadEventExecutor because of a recent merge. It does not use it and thus should not import it. Modifications: - Remove SingleThreadEventExecutor import Result: LocalChannel has no unused imports. --- transport/src/main/java/io/netty/channel/local/LocalChannel.java | 1 - 1 file changed, 1 deletion(-) diff --git a/transport/src/main/java/io/netty/channel/local/LocalChannel.java b/transport/src/main/java/io/netty/channel/local/LocalChannel.java index 655a3111b6..17e1b49941 100644 --- a/transport/src/main/java/io/netty/channel/local/LocalChannel.java +++ b/transport/src/main/java/io/netty/channel/local/LocalChannel.java @@ -28,7 +28,6 @@ import io.netty.channel.EventLoop; import io.netty.channel.SingleThreadEventLoop; import io.netty.util.ReferenceCountUtil; import io.netty.util.concurrent.Future; -import io.netty.util.concurrent.SingleThreadEventExecutor; import io.netty.util.internal.EmptyArrays; import io.netty.util.internal.InternalThreadLocalMap; import io.netty.util.internal.OneTimeTask;