Chromium Code Reviews| Index: sdk/lib/convert/utf.dart |
| diff --git a/sdk/lib/convert/utf.dart b/sdk/lib/convert/utf.dart |
| index 86763cb7a85868695792acf220328cbd7b40cd47..7e7637610b7b00a34c021986fc11b62df4f2444c 100644 |
| --- a/sdk/lib/convert/utf.dart |
| +++ b/sdk/lib/convert/utf.dart |
| @@ -370,8 +370,8 @@ class Utf8Decoder extends Converter<List<int>, String> |
| // Override the base-classes bind, to provide a better type. |
| Stream<String> bind(Stream<List<int>> stream) => super.bind(stream); |
| - external Converter<List<int>, dynamic/*=T*/> fuse/*<T>*/( |
| - Converter<String, dynamic/*=T*/> next); |
| + external Converter<List<int>, T> fuse<T>( |
| + Converter<String, T> next); |
|
floitsch
2016/12/13 12:42:25
Does this fit on one line?
Lasse Reichstein Nielsen
2016/12/13 14:28:03
Done.
|
| external static String _convertIntercepted( |
| bool allowMalformed, List<int> codeUnits, int start, int end); |