| Index: sdk/lib/io/http_parser.dart
|
| diff --git a/sdk/lib/io/http_parser.dart b/sdk/lib/io/http_parser.dart
|
| index 99bc7c7f6e46898e9a6fabf7d52bed2e73e80edf..de55780413d218448b2965352d96d9196c2898ec 100644
|
| --- a/sdk/lib/io/http_parser.dart
|
| +++ b/sdk/lib/io/http_parser.dart
|
| @@ -842,7 +842,7 @@ class _HttpParser
|
| return byte > 31 && byte < 128 && !_Const.SEPARATOR_MAP[byte];
|
| }
|
|
|
| - List<String> _tokenizeFieldValue(String headerValue) {
|
| + static List<String> _tokenizeFieldValue(String headerValue) {
|
| List<String> tokens = new List<String>();
|
| int start = 0;
|
| int index = 0;
|
|
|