Chromium Code Reviews| Index: runtime/lib/array.dart |
| diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart |
| index 3a2ca485d551e1d886f26de2768de933dd0e938f..135eaf2d2bbf2869927c8ca7dc4cb1ea20a11d71 100644 |
| --- a/runtime/lib/array.dart |
| +++ b/runtime/lib/array.dart |
| @@ -93,7 +93,7 @@ class _ObjectArray<E> implements List<E> { |
| } |
| void sort([Comparator<E> compare = Comparable.compare]) { |
| - DualPivotQuicksort.sort(this, compare); |
| + coreSort(this, compare); |
| } |
| int indexOf(E element, [int start = 0]) { |