From 485c17d91197f46ed3aa6d414b92d1f4353bdb9c Mon Sep 17 00:00:00 2001 From: Scott Mitchell Date: Wed, 15 Apr 2015 10:50:04 -0700 Subject: [PATCH] Commit b823bfa missed an include change Motivation: b823bfa introduced a compile error for the microbench package. Modifications: change AsciiString import to new package. Result: No more compile error. --- .../io/netty/microbench/http2/Http2FrameWriterBenchmark.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microbench/src/test/java/io/netty/microbench/http2/Http2FrameWriterBenchmark.java b/microbench/src/test/java/io/netty/microbench/http2/Http2FrameWriterBenchmark.java index 576161c673..a4ac332a76 100644 --- a/microbench/src/test/java/io/netty/microbench/http2/Http2FrameWriterBenchmark.java +++ b/microbench/src/test/java/io/netty/microbench/http2/Http2FrameWriterBenchmark.java @@ -43,7 +43,6 @@ import io.netty.channel.socket.nio.NioServerSocketChannel; import io.netty.channel.socket.nio.NioSocketChannel; import io.netty.channel.socket.oio.OioServerSocketChannel; import io.netty.channel.socket.oio.OioSocketChannel; -import io.netty.handler.codec.AsciiString; import io.netty.handler.codec.http2.DefaultHttp2Connection; import io.netty.handler.codec.http2.DefaultHttp2ConnectionDecoder; import io.netty.handler.codec.http2.DefaultHttp2ConnectionEncoder; @@ -61,6 +60,7 @@ import io.netty.handler.codec.http2.Http2LocalFlowController; import io.netty.handler.codec.http2.Http2RemoteFlowController; import io.netty.microbench.channel.EmbeddedChannelWriteReleaseHandlerContext; import io.netty.microbench.util.AbstractSharedExecutorMicrobenchmark; +import io.netty.util.AsciiString; import io.netty.util.concurrent.Future; import java.net.InetSocketAddress;