| Index: samples/third_party/dromaeo/tests/Common.dart
|
| diff --git a/samples/third_party/dromaeo/tests/Common.dart b/samples/third_party/dromaeo/tests/Common.dart
|
| index 24002f534d46ced69fab0318b4e4512609f45e5d..f763fb98a2f62ab0c490556f63591d75dda0c84e 100644
|
| --- a/samples/third_party/dromaeo/tests/Common.dart
|
| +++ b/samples/third_party/dromaeo/tests/Common.dart
|
| @@ -39,7 +39,7 @@ class Result {
|
| }
|
|
|
| factory Result(List<double> runsPerSecond) {
|
| - runsPerSecond.sort(int _(double a, double b) => a.compareTo(b));
|
| + runsPerSecond.sort((a, b) => a.compareTo(b));
|
| return new Result._internal(runsPerSecond);
|
| }
|
|
|
|
|