Deprecate getServer() in DispatchServer, use getHttpServer() instead

This commit is contained in:
Melledy 2022-04-26 20:28:48 -07:00
parent 691324c9e7
commit 07b4dc95ea

View File

@ -59,6 +59,10 @@ public final class DispatchServer {
return server;
}
public HttpServer getHttpServer() {
return server;
}
public InetSocketAddress getAddress() {
return address;
}