Index: sdk/lib/io/http_headers.dart |
diff --git a/sdk/lib/io/http_headers.dart b/sdk/lib/io/http_headers.dart |
index 41ab104c63723cc7be78a0450a7defda85c9cfa7..342755b757d096c65b9b29861e14122ee74cf808 100644 |
--- a/sdk/lib/io/http_headers.dart |
+++ b/sdk/lib/io/http_headers.dart |
@@ -716,7 +716,7 @@ class _Cookie implements Cookie { |
value = parseAttributeValue(); |
} |
if (name == "expires") { |
- expires = _HttpUtils.parseCookieDate(value); |
+ expires = HttpDate._parseCookieDate(value); |
} else if (name == "max-age") { |
maxAge = int.parse(value); |
} else if (name == "domain") { |