| Index: sdk/lib/convert/latin1.dart
|
| diff --git a/sdk/lib/convert/latin1.dart b/sdk/lib/convert/latin1.dart
|
| index 30f4c8d37c7e3f20a909aa67497ebd373e3796dd..033f8dd6e5093730a8e635c1c753d011dc0bfc55 100644
|
| --- a/sdk/lib/convert/latin1.dart
|
| +++ b/sdk/lib/convert/latin1.dart
|
| @@ -97,8 +97,7 @@ class Latin1Decoder extends _UnicodeSubsetDecoder {
|
| * The converter works more efficiently if the given [sink] is a
|
| * [StringConversionSink].
|
| */
|
| - ByteConversionSink startChunkedConversion(
|
| - ChunkedConversionSink<String> sink) {
|
| + ByteConversionSink startChunkedConversion(Sink<String> sink) {
|
| StringConversionSink stringSink;
|
| if (sink is StringConversionSink) {
|
| stringSink = sink;
|
|
|