Chromium Code Reviews| Index: sdk/lib/convert/json.dart |
| diff --git a/sdk/lib/convert/json.dart b/sdk/lib/convert/json.dart |
| index 3d5ee82989be0b8ca3028b3a3c08c0dd7b463ed7..822bbbb2ec9183f447488ddb2ee901a89ca95a03 100644 |
| --- a/sdk/lib/convert/json.dart |
| +++ b/sdk/lib/convert/json.dart |
| @@ -268,13 +268,13 @@ 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>( |
|
floitsch
2016/12/13 12:42:25
Move to same line.
|
| + 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); |
| } |
| } |