| Index: sdk/lib/convert/utf.dart
|
| diff --git a/sdk/lib/convert/utf.dart b/sdk/lib/convert/utf.dart
|
| index a6c672050afd986b440335d3a82c5a9ae7448d4d..8e480f80333904569054ec0557754049fac40049 100644
|
| --- a/sdk/lib/convert/utf.dart
|
| +++ b/sdk/lib/convert/utf.dart
|
| @@ -5,10 +5,10 @@
|
| part of dart.convert;
|
|
|
| /** The Unicode Replacement character `U+FFFD` (�). */
|
| -const UNICODE_REPLACEMENT_CHARACTER_RUNE = 0xFFFD;
|
| +const int UNICODE_REPLACEMENT_CHARACTER_RUNE = 0xFFFD;
|
|
|
| /** The Unicode Byte Order Marker (BOM) character `U+FEFF`. */
|
| -const UNICODE_BOM_CHARACTER_RUNE = 0xFEFF;
|
| +const int UNICODE_BOM_CHARACTER_RUNE = 0xFEFF;
|
|
|
| /**
|
| * An instance of the default implementation of the [Utf8Codec].
|
|
|