Chromium Code Reviews| Index: test/utils_test.dart |
| diff --git a/test/utils_test.dart b/test/utils_test.dart |
| index 5d973f58acf29578617cec0f40529602ecef0e1c..2a86cc070f77654450ca504fb779545eb9c4b996 100644 |
| --- a/test/utils_test.dart |
| +++ b/test/utils_test.dart |
| @@ -45,11 +45,3 @@ main() { |
| }); |
| }); |
| } |
| - |
| -_linearSearch(list, predicate) { |
| - if (list.length == 0) return -1; |
| - for (int i = 0; i < list.length; i++) { |
| - if (predicate(list[i])) return i; |
| - } |
| - return list.length; |
| -} |