| Index: sdk/lib/utf/utf_stream.dart
|
| diff --git a/sdk/lib/utf/utf_stream.dart b/sdk/lib/utf/utf_stream.dart
|
| index 35260fbe67d354b5943f2704af2b8543d0bad977..71dc76de7b233458525f3a305cef61bad4dd0d56 100644
|
| --- a/sdk/lib/utf/utf_stream.dart
|
| +++ b/sdk/lib/utf/utf_stream.dart
|
| @@ -72,7 +72,7 @@ abstract class _StringDecoder
|
| void handleDone(StreamSink<String> sink) {
|
| if (_carry != null) {
|
| sink.add(new String.fromCharCodes(
|
| - new List.fixedLength(_carry.length, fill: _replacementChar)));
|
| + new List.filled(_carry.length, _replacementChar)));
|
| }
|
| sink.close();
|
| }
|
|
|