| Index: runtime/bin/http_impl.dart
|
| diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart
|
| index f8475ca2ab5a99c940052e0d2d8570afd56a8976..e9801de55538ee3191605325014c886f96575d92 100644
|
| --- a/runtime/bin/http_impl.dart
|
| +++ b/runtime/bin/http_impl.dart
|
| @@ -580,6 +580,10 @@ class _HttpOutputStream extends _BaseOutputStream implements OutputStream {
|
| return _requestOrResponse._streamWriteFrom(buffer, offset, len);
|
| }
|
|
|
| + void flush() {
|
| + // Nothing to do on a HTTP output stream.
|
| + }
|
| +
|
| void close() {
|
| _requestOrResponse._streamClose();
|
| }
|
|
|