| Index: runtime/lib/byte_array.dart
|
| diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
|
| index a4550503e0e5cef38c460e01996b31c67f16297e..e76b3c4a89baee2e84acd548723dbe4d685d070e 100644
|
| --- a/runtime/lib/byte_array.dart
|
| +++ b/runtime/lib/byte_array.dart
|
| @@ -184,7 +184,7 @@ abstract class _ByteArrayBase {
|
| }
|
|
|
| void sort([Comparator compare = Comparable.compare]) {
|
| - coreSort(this, compare);
|
| + _Sort.sort(this, compare);
|
| }
|
|
|
| int indexOf(element, [int start = 0]) {
|
| @@ -1662,7 +1662,7 @@ class _ByteArrayViewBase {
|
| }
|
|
|
| void sort([Comparator compare = Comparable.compare]) {
|
| - coreSort(this, compare);
|
| + _Sort.sort(this, compare);
|
| }
|
|
|
| int indexOf(element, [int start = 0]) {
|
|
|