Chromium Code Reviews| Index: tests/corelib/src/SortHelper.dart |
| diff --git a/tests/corelib/src/SortHelper.dart b/tests/corelib/src/SortHelper.dart |
| index 59314b93ab62251acf282a701efeee61485675cf..4efa33bbc1bedb346f00d44b56807ca2aaf5e66b 100644 |
| --- a/tests/corelib/src/SortHelper.dart |
| +++ b/tests/corelib/src/SortHelper.dart |
| @@ -20,7 +20,7 @@ class SortHelper { |
| print("[$buffer]"); |
| } |
| - void isSorted(List a) { |
| + bool isSorted(List a) { |
|
jimhug
2011/11/11 15:02:02
Do you know why frog is the first one catching the
|
| for (int i = 1; i < a.length; i++) { |
| if (compareFunction(a[i - 1], a[i]) > 0) { |
| return false; |