Skip to content

Commit

Permalink
Remove deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
decebals committed Dec 1, 2021
1 parent f7c4135 commit 31ecc03
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions pippo-core/src/main/java/ro/pippo/core/route/Route.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,14 +148,6 @@ public static Route CONNECT(String uriPattern, RouteHandler routeHandler) {
return new Route(HttpConstants.Method.CONNECT, uriPattern, routeHandler);
}

/**
* @deprecated Replaced by {@link #ANY(String, RouteHandler)}.
*/
@Deprecated
public static Route ALL(String uriPattern, RouteHandler routeHandler) {
return ANY(uriPattern, routeHandler);
}

/**
* Create a route responding to any HTTP Verb (GET, POST, PUT, ...).
*
Expand Down

0 comments on commit 31ecc03

Please sign in to comment.