Skip to content

Commit a5e6ef2

Browse files
committed
Move NettyChannelConnector to channel package
1 parent 6a1c4de commit a5e6ef2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

client/src/main/java/org/asynchttpclient/netty/request/NettyChannelConnector.java renamed to client/src/main/java/org/asynchttpclient/netty/channel/NettyChannelConnector.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package org.asynchttpclient.netty.request;
13+
package org.asynchttpclient.netty.channel;
1414

1515
import io.netty.bootstrap.Bootstrap;
1616
import io.netty.channel.Channel;
1717
import org.asynchttpclient.AsyncHandler;
1818
import org.asynchttpclient.AsyncHttpClientState;
1919
import org.asynchttpclient.netty.SimpleChannelFutureListener;
20-
import org.asynchttpclient.netty.channel.NettyConnectListener;
2120
import org.slf4j.Logger;
2221
import org.slf4j.LoggerFactory;
2322

@@ -40,7 +39,7 @@ public class NettyChannelConnector {
4039
private final AsyncHttpClientState clientState;
4140
private volatile int i = 0;
4241

43-
NettyChannelConnector(InetAddress localAddress,
42+
public NettyChannelConnector(InetAddress localAddress,
4443
List<InetSocketAddress> remoteAddresses,
4544
AsyncHandler<?> asyncHandler,
4645
AsyncHttpClientState clientState) {

0 commit comments

Comments
 (0)