| Index: runtime/lib/string_patch.dart
|
| diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
|
| index f7aa83c5522b3d31143e1f73e4e3ecb0225d9f29..73f370f33f49c3741852d883c4988804928160f2 100644
|
| --- a/runtime/lib/string_patch.dart
|
| +++ b/runtime/lib/string_patch.dart
|
| @@ -219,12 +219,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";
|
|
|
|
|