| Index: runtime/bin/http.dart
|
| diff --git a/runtime/bin/http.dart b/runtime/bin/http.dart
|
| index b16181f724da0dd1fbd4990f877cf3afd1e36775..0baa356e85f75a4f8ca7bc449d3147af4de86ca8 100644
|
| --- a/runtime/bin/http.dart
|
| +++ b/runtime/bin/http.dart
|
| @@ -204,14 +204,6 @@ interface HttpResponse default _HttpResponse {
|
| * having retrieved the output stream will throw an exception.
|
| */
|
| OutputStream get outputStream();
|
| -
|
| - /**
|
| - * Write string data to the response. The string characters will be
|
| - * encoded using UFT-8. This is a temporary convenience method as
|
| - * long as the OutputStream interface does not have a writeString
|
| - * method.
|
| - */
|
| - bool writeString(String string);
|
| }
|
|
|
|
|
| @@ -356,14 +348,6 @@ interface HttpClientRequest default _HttpClientRequest {
|
| * having retrieved the output stream will throw an exception.
|
| */
|
| OutputStream get outputStream();
|
| -
|
| - /**
|
| - * Write string data to the request. The string characters will be
|
| - * encoded using UFT-8. This is a temporary convenience method as
|
| - * long as the OutputStream interface does not have a writeString
|
| - * method.
|
| - */
|
| - bool writeString(String string);
|
| }
|
|
|
|
|
|
|