| Index: sdk/lib/convert/utf.dart
|
| diff --git a/sdk/lib/convert/utf.dart b/sdk/lib/convert/utf.dart
|
| index a58fb749971b33d16946252f842ed1b01ead5e32..9128e61a1a9c446b0bab931ed66ffe521cb21ed1 100644
|
| --- a/sdk/lib/convert/utf.dart
|
| +++ b/sdk/lib/convert/utf.dart
|
| @@ -386,8 +386,6 @@ const int _SURROGATE_VALUE_MASK = 0x3FF;
|
| const int _LEAD_SURROGATE_MIN = 0xD800;
|
| const int _TAIL_SURROGATE_MIN = 0xDC00;
|
|
|
| -bool _isSurrogate(int codeUnit) =>
|
| - (codeUnit & _SURROGATE_MASK) == _LEAD_SURROGATE_MIN;
|
| bool _isLeadSurrogate(int codeUnit) =>
|
| (codeUnit & _SURROGATE_TAG_MASK) == _LEAD_SURROGATE_MIN;
|
| bool _isTailSurrogate(int codeUnit) =>
|
| @@ -396,7 +394,6 @@ int _combineSurrogatePair(int lead, int tail) =>
|
| 0x10000 + ((lead & _SURROGATE_VALUE_MASK) << 10)
|
| | (tail & _SURROGATE_VALUE_MASK);
|
|
|
| -
|
| /**
|
| * Decodes UTF-8.
|
| *
|
|
|