Index: runtime/bin/http_impl.dart |
diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart |
index f90339d6565176278612ba8f4200669920ed90b9..a823748fe19b27d4144ea0cb1baaf7865db8b827 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(); |