| Index: sdk/lib/convert/utf.dart
|
| diff --git a/sdk/lib/convert/utf.dart b/sdk/lib/convert/utf.dart
|
| index 86763cb7a85868695792acf220328cbd7b40cd47..0687bb145b18f9c2d44f43ef8383435b3e2fdada 100644
|
| --- a/sdk/lib/convert/utf.dart
|
| +++ b/sdk/lib/convert/utf.dart
|
| @@ -370,8 +370,7 @@ 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);
|
|
|
| external static String _convertIntercepted(
|
| bool allowMalformed, List<int> codeUnits, int start, int end);
|
|
|