Polish "Add getUndertow method to UndertowWebServer"

See gh-39916
This commit is contained in:
Moritz Halbritter
2024-03-13 11:27:29 +01:00
parent 7d30bc55d0
commit c2be81540a

View File

@@ -299,9 +299,10 @@ public class UndertowWebServer implements WebServer {
}
/**
* Returns the undertow of the WebServer. Note, the return value will be null until
* the server has been started.
* @return undertow of the WebServer.
* Returns the {@link Undertow Undertow server}. Returns {@code null} until the server
* has been started.
* @return the Undertow server or {@code null} if the server hasn't been started yet
* @since 3.3.0
*/
public Undertow getUndertow() {
return this.undertow;