| Index: runtime/lib/array.dart
|
| diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart
|
| index 165ba64812fe23e8c34f4db3210345b0c9ec585f..d7fac3ad174401f9778185bcc01bd4080fa78db5 100644
|
| --- a/runtime/lib/array.dart
|
| +++ b/runtime/lib/array.dart
|
| @@ -155,8 +155,7 @@ class _ObjectArray<E> implements List<E> {
|
| }
|
|
|
| void sort([int compare(E a, E b)]) {
|
| - if (compare == null) compare = Comparable.compare;
|
| - _Sort.sort(this, compare);
|
| + IterableMixinWorkaround.sortList(this, compare);
|
| }
|
|
|
| int indexOf(E element, [int start = 0]) {
|
|
|