Browse Source

Remove an useless todo

Loïc Hoguin 12 years ago
parent
commit
bab62900dd
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/cowboy_http_rest.erl

+ 0 - 1
src/cowboy_http_rest.erl

@@ -906,7 +906,6 @@ next(Req, State, Next) when is_function(Next) ->
 next(Req, State, StatusCode) when is_integer(StatusCode) ->
 	respond(Req, State, StatusCode).
 
-%% @todo Allow some sort of callback for custom error pages.
 respond(Req, State, StatusCode) ->
 	{ok, Req2} = cowboy_http_req:reply(StatusCode, Req),
 	terminate(Req2, State).