Rename reactor.io.netty -> reactor.ipc.netty

This commit is contained in:
Brian Clozel
2016-07-23 14:34:12 +02:00
parent 382a931e7d
commit b2e848737c
8 changed files with 14 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ public class ReactorHttpServer extends HttpServerSupport implements HttpServer,
private ReactorHttpHandlerAdapter reactorHandler;
private reactor.io.netty.http.HttpServer reactorServer;
private reactor.ipc.netty.http.HttpServer reactorServer;
private boolean running;
@@ -38,7 +38,7 @@ public class ReactorHttpServer extends HttpServerSupport implements HttpServer,
Assert.notNull(getHttpHandler());
this.reactorHandler = new ReactorHttpHandlerAdapter(getHttpHandler());
this.reactorServer = reactor.io.netty.http.HttpServer.create(getHost(), getPort());
this.reactorServer = reactor.ipc.netty.http.HttpServer.create(getHost(), getPort());
}