diff --git a/sdk/lib/_http/http_parser.dart b/sdk/lib/_http/http_parser.dart index 94597897490..cb13b247880 100644 --- a/sdk/lib/_http/http_parser.dart +++ b/sdk/lib/_http/http_parser.dart @@ -978,7 +978,6 @@ class _HttpParser extends Stream<_HttpIncoming> { static bool _isValueChar(int byte) { return (byte > 31 && byte < 128) || - (byte == _CharCode.SP) || (byte == _CharCode.HT); }