Browse Source

Remove a dead code clause for split_path.

Loïc Hoguin 14 years ago
parent
commit
896b854908
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/cowboy_dispatcher.erl

+ 0 - 2
src/cowboy_dispatcher.erl

@@ -25,8 +25,6 @@ split_host(Host) ->
 	string:tokens(Host, ".").
 
 -spec split_path(Path::string()) -> {Tokens::path_tokens(), Qs::string()}.
-split_path('*') ->
-	{'*', []};
 split_path(Path) ->
 	case string:chr(Path, $?) of
 		0 ->