| Index: sdk/lib/io/http_impl.dart
|
| diff --git a/sdk/lib/io/http_impl.dart b/sdk/lib/io/http_impl.dart
|
| index df42fcfe4b884d4645b8665b34d9955ee1b54ec5..9d6456f82076389b0905bf22f1b2abf8351df328 100644
|
| --- a/sdk/lib/io/http_impl.dart
|
| +++ b/sdk/lib/io/http_impl.dart
|
| @@ -144,7 +144,7 @@ class _HttpRequest extends _HttpInboundMessage implements HttpRequest {
|
| HttpConnectionInfo get connectionInfo => _httpConnection.connectionInfo;
|
|
|
| X509Certificate get certificate {
|
| - Socket socket = _httpConnection._socket;
|
| + var socket = _httpConnection._socket;
|
| if (socket is SecureSocket) return socket.peerCertificate;
|
| return null;
|
| }
|
|
|