| Index: sdk/lib/convert/json.dart
|
| diff --git a/sdk/lib/convert/json.dart b/sdk/lib/convert/json.dart
|
| index 3d5ee82989be0b8ca3028b3a3c08c0dd7b463ed7..712f09446781b251be2bbea824f61121cace62af 100644
|
| --- a/sdk/lib/convert/json.dart
|
| +++ b/sdk/lib/convert/json.dart
|
| @@ -268,13 +268,12 @@ class JsonEncoder extends Converter<Object, String>
|
| // Override the base class's bind, to provide a better type.
|
| Stream<String> bind(Stream<Object> stream) => super.bind(stream);
|
|
|
| - Converter<Object, dynamic/*=T*/> fuse/*<T>*/(
|
| - Converter<String, dynamic/*=T*/> other) {
|
| + Converter<Object, T> fuse<T>(Converter<String, T> other) {
|
| if (other is Utf8Encoder) {
|
| return new JsonUtf8Encoder(indent, _toEncodable)
|
| as dynamic/*=Converter<Object, T>*/;
|
| }
|
| - return super.fuse/*<T>*/(other);
|
| + return super.fuse<T>(other);
|
| }
|
| }
|
|
|
|
|