aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_http.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/cowboy_http.erl')
-rw-r--r--src/cowboy_http.erl7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/cowboy_http.erl b/src/cowboy_http.erl
index 5036d63..ee8902a 100644
--- a/src/cowboy_http.erl
+++ b/src/cowboy_http.erl
@@ -67,13 +67,6 @@ list(Data, Fun, Acc) ->
%% @doc Parse a media range.
-spec media_range(binary(), fun()) -> any().
media_range(Data, Fun) ->
- whitespace(Data,
- fun (<<>>) -> {error, badarg};
- (Rest) -> media_range_type(Rest, Fun)
- end).
-
--spec media_range_type(binary(), fun()) -> any().
-media_range_type(Data, Fun) ->
token_ci(Data,
fun (_Rest, <<>>) -> {error, badarg};
(Rest, Type) -> whitespace(Rest,