Index: sdk/lib/convert/utf.dart |
diff --git a/sdk/lib/convert/utf.dart b/sdk/lib/convert/utf.dart |
index a93c9aec2c19a56680936d50c899900faed50a06..287d8ec8add7bd9e375a4a6ecf7a8a8a79806e30 100644 |
--- a/sdk/lib/convert/utf.dart |
+++ b/sdk/lib/convert/utf.dart |
@@ -76,8 +76,7 @@ class Utf8Codec extends Encoding { |
* This class converts strings to their UTF-8 code units (a list of |
* unsigned 8-bit integers). |
*/ |
-class Utf8Encoder extends |
- ChunkedConverter<String, List<int>, String, List<int>> { |
+class Utf8Encoder extends Converter<String, List<int>> { |
const Utf8Encoder(); |
@@ -305,8 +304,7 @@ class _Utf8EncoderSink extends _Utf8Encoder with StringConversionSinkMixin { |
* This class converts UTF-8 code units (lists of unsigned 8-bit integers) |
* to a string. |
*/ |
-class Utf8Decoder extends |
- ChunkedConverter<List<int>, String, List<int>, String> { |
+class Utf8Decoder extends Converter<List<int>, String> { |
final bool _allowMalformed; |
/** |