| Index: runtime/lib/byte_array.dart
|
| diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
|
| index 6d7b2e7798109a9fe383009dc4ddd4c373368c36..e33abfb18a8be247c13ecbdfb024ae256e74c143 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]) {
|
| - _Sort.sort(this, compare);
|
| + coreSort(this, compare);
|
| }
|
|
|
| int indexOf(element, [int start = 0]) {
|
| @@ -1666,7 +1666,7 @@ class _ByteArrayViewBase {
|
| }
|
|
|
| void sort([Comparator compare = Comparable.compare]) {
|
| - _Sort.sort(this, compare);
|
| + coreSort(this, compare);
|
| }
|
|
|
| int indexOf(element, [int start = 0]) {
|
|
|