Skip to content

Commit

Permalink
Fix deprecation messages for ROUTE_* constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Sargent committed May 26, 2015
1 parent 9454370 commit b9708d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions framework/src/play/src/main/scala/play/api/Routes.scala
Expand Up @@ -12,13 +12,13 @@ object Routes {

@deprecated("Use play.api.routing.Router.Tags.RouteVerb instead", "2.4.0")
val ROUTE_VERB = Router.Tags.RouteVerb
@deprecated("Use play.api.routing.Router.Tags.RouteVerb instead", "2.4.0")
@deprecated("Use play.api.routing.Router.Tags.RoutePattern instead", "2.4.0")
val ROUTE_PATTERN = Router.Tags.RoutePattern
@deprecated("Use play.api.routing.Router.Tags.RouteVerb instead", "2.4.0")
@deprecated("Use play.api.routing.Router.Tags.RouteController instead", "2.4.0")
val ROUTE_CONTROLLER = Router.Tags.RouteController
@deprecated("Use play.api.routing.Router.Tags.RouteVerb instead", "2.4.0")
@deprecated("Use play.api.routing.Router.Tags.RouteActionMethod instead", "2.4.0")
val ROUTE_ACTION_METHOD = Router.Tags.RouteActionMethod
@deprecated("Use play.api.routing.Router.Tags.RouteVerb instead", "2.4.0")
@deprecated("Use play.api.routing.Router.Tags.RouteComments instead", "2.4.0")
val ROUTE_COMMENTS = Router.Tags.RouteComments

@deprecated("Use play.api.routing.JavaScriptReverseRouter instead", "2.4.0")
Expand Down

0 comments on commit b9708d0

Please sign in to comment.