| Index: sdk/lib/io/http_parser.dart
|
| diff --git a/sdk/lib/io/http_parser.dart b/sdk/lib/io/http_parser.dart
|
| index c008f349987e5d0e4026e2e9c4ce9cac4d7b8079..047f37a513dc792b356ea093c5190be602cd1fc3 100644
|
| --- a/sdk/lib/io/http_parser.dart
|
| +++ b/sdk/lib/io/http_parser.dart
|
| @@ -420,9 +420,6 @@ class _HttpParser
|
|
|
| case _State.RESPONSE_LINE_REASON_PHRASE:
|
| if (byte == _CharCode.CR) {
|
| - if (_uri_or_reason_phrase.length == 0) {
|
| - throw new HttpParserException("Invalid response reason phrase");
|
| - }
|
| _state = _State.RESPONSE_LINE_ENDING;
|
| } else {
|
| if (byte == _CharCode.CR || byte == _CharCode.LF) {
|
|
|