Skip to content

Commit

Permalink
Reintroduce RouteBuildItem#Builder() public ctor
Browse files Browse the repository at this point in the history
It used to be public and was made private when it was marked as
deprecated (the default constructor is public).
It is used by extensions out there so we need to maintain it.

(cherry picked from commit f020e07)
  • Loading branch information
gsmet committed Mar 10, 2021
1 parent 4227e2e commit 4d2a230
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,13 @@ public static class Builder {
/**
* Use HttpRootPathBuildItem and NonApplicationRootPathBuildItem to
* ensure paths are constructed/normalized correctly
*
*
* @deprecated
* @see HttpRootPathBuildItem#routeBuilder()
* @see NonApplicationRootPathBuildItem#routeBuilder()
*/
@Deprecated
Builder() {
public Builder() {
}

/**
Expand Down

0 comments on commit 4d2a230

Please sign in to comment.