Skip to content

Commit

Permalink
remove refs (#4579)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjav-desai authored Jul 20, 2022
1 parent 46a8035 commit 2594808
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ interface Builder extends RouterBuilder<Builder>, io.helidon.common.Builder<Buil
}

/**
* Generic builder interface used by both {@link io.helidon.webserver.Router.Builder} and {@code io.helidon.nima.webserver.WebServer.Builder}.
* Generic builder interface used by {@link io.helidon.webserver.Router.Builder}.
*
* @param <B> type of the builder
*/
interface RouterBuilder<B extends RouterBuilder<B>> {
/**
* Add a new routing to this router.
*
* @param routing routing to add, such as {@code io.helidon.nima.webserver.http.HttpRouting}
* @param routing routing to add
* @return updated builder
*/
B addRouting(Routing routing);

/**
* Add a new routing to this router.
*
* @param routing routing to add, such as {@code io.helidon.nima.webserver.http.HttpRouting}
* @param routing routing to add
* @return updated builder
*/
default B addRouting(Supplier<? extends Routing> routing) {
Expand Down

0 comments on commit 2594808

Please sign in to comment.