| Index: runtime/lib/string_patch.dart
|
| diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
|
| index a4bb7e7cb9a4d52cfa2a3603861786f339a9e26c..9c7e5843b1f77fcc73dbc06fe80bc79e642be115 100644
|
| --- a/runtime/lib/string_patch.dart
|
| +++ b/runtime/lib/string_patch.dart
|
| @@ -217,12 +217,6 @@ abstract class _StringBase {
|
| return s;
|
| }
|
|
|
| - static String _createTwoByteString(List<int> charCodes, int start, int len) {
|
| - // TODO(lrn): Create string without scanning charCodes again - all values
|
| - // in the [start..end] range are uint16 values.
|
| - return _createFromCodePoints(charCodes, start, end);
|
| - }
|
| -
|
| static String _createFromCodePoints(List<int> codePoints, int start, int end)
|
| native "StringBase_createFromCodePoints";
|
|
|
|
|