| Index: runtime/lib/growable_array.dart
|
| diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
|
| index a446adfc280fc704c3385399ede20ba4fb8aad7a..cd318648332cccb08ccecb74bd79091817e82af8 100644
|
| --- a/runtime/lib/growable_array.dart
|
| +++ b/runtime/lib/growable_array.dart
|
| @@ -38,7 +38,7 @@ class _GrowableObjectArray<T> implements List<T> {
|
| IterableMixinWorkaround.retainAll(this, elements);
|
| }
|
|
|
| - void removeMatching(bool test(T element)) {
|
| + void removeMatching(bool test(E element)) {
|
| IterableMixinWorkaround.removeMatchingList(this, test);
|
| }
|
|
|
|
|