| Index: sdk/lib/utf/utf.dart
|
| diff --git a/sdk/lib/utf/utf.dart b/sdk/lib/utf/utf.dart
|
| index 2031e6233abf2b547720f523f8ed5ccf276dd941..1b1e63baa9bf9a7f6995af73f6e1031ace57d98b 100644
|
| --- a/sdk/lib/utf/utf.dart
|
| +++ b/sdk/lib/utf/utf.dart
|
| @@ -21,7 +21,10 @@ List<int> stringToCodepoints(String str) {
|
|
|
| /**
|
| * Generate a string from the provided Unicode codepoints.
|
| + *
|
| + * *Deprecated* Use [String.fromCharCodes] instead.
|
| */
|
| +@deprecated
|
| String codepointsToString(List<int> codepoints) {
|
| return new String.fromCharCodes(codepoints);
|
| }
|
|
|