| Index: runtime/bin/http_impl.dart
|
| diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart
|
| index 557ea09b2e345bfe0069120613fd6e85a88c0aa7..68e2f52d71cdd7abe58051797f10b3a8192b0fe6 100644
|
| --- a/runtime/bin/http_impl.dart
|
| +++ b/runtime/bin/http_impl.dart
|
| @@ -2294,7 +2294,7 @@ class _HttpClient implements HttpClient {
|
| // As returned connections are added at the head of the
|
| // list remove from the tail.
|
| while (!connections.isEmpty) {
|
| - _SocketConnection socketConn = connections.last();
|
| + _SocketConnection socketConn = connections.last;
|
| if (socketConn._idleTime(now).inMilliseconds >
|
| DEFAULT_EVICTION_TIMEOUT) {
|
| connections.removeLast();
|
|
|