diff options
author | Loïc Hoguin <[email protected]> | 2014-12-31 00:07:03 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2014-12-31 00:07:03 +0100 |
commit | 9da51ee5f9392cdc61a134b0266c5a26320923ab (patch) | |
tree | fc9f9f2355785dfd530193164165ff2c0dd48833 /src/cow_http_hd.erl | |
parent | 163356129ebc08981e80e900de845afd964ef3bc (diff) | |
download | cowlib-9da51ee5f9392cdc61a134b0266c5a26320923ab.tar.gz cowlib-9da51ee5f9392cdc61a134b0266c5a26320923ab.tar.bz2 cowlib-9da51ee5f9392cdc61a134b0266c5a26320923ab.zip |
Remove an extraneous empty line
Diffstat (limited to 'src/cow_http_hd.erl')
-rw-r--r-- | src/cow_http_hd.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cow_http_hd.erl b/src/cow_http_hd.erl index 66cb746..e2bde6d 100644 --- a/src/cow_http_hd.erl +++ b/src/cow_http_hd.erl @@ -1600,7 +1600,6 @@ media_charset_quoted(<< C, R/bits >>, T, S, P, V) when ?IS_VCHAR_OBS(C) -> end. media_charset(<<>>, T, S, P, V) -> {T, S, lists:reverse([{<<"charset">>, V}|P])}; - media_charset(<< $;, R/bits >>, T, S, P, V) -> media_before_param(R, T, S, [{<<"charset">>, V}|P]); media_charset(<< $\s, R/bits >>, T, S, P, V) -> media_before_semicolon(R, T, S, [{<<"charset">>, V}|P]); media_charset(<< $\t, R/bits >>, T, S, P, V) -> media_before_semicolon(R, T, S, [{<<"charset">>, V}|P]); |