| Index: tests/corelib_2/sort_helper.dart
|
| diff --git a/tests/corelib_2/sort_helper.dart b/tests/corelib_2/sort_helper.dart
|
| index 945f6356a7321ec312253e56c8b63e9bec997ba6..6b8307bb7054e991be18168ced339f7ffec5bb1e 100644
|
| --- a/tests/corelib_2/sort_helper.dart
|
| +++ b/tests/corelib_2/sort_helper.dart
|
| @@ -6,10 +6,8 @@ library sort_helper;
|
|
|
| import "package:expect/expect.dart";
|
|
|
| -typedef Sorter
|
| - = void Function(List<num>);
|
| -typedef Comparer
|
| - = int Function(num, num);
|
| +typedef Sorter = void Function(List<num>);
|
| +typedef Comparer = int Function(num, num);
|
|
|
| class SortHelper {
|
| SortHelper(this.sortFunction, this.compareFunction) {}
|
|
|