| Index: sdk/lib/html/templates/immutable_list_mixin.darttemplate
|
| diff --git a/sdk/lib/html/templates/immutable_list_mixin.darttemplate b/sdk/lib/html/templates/immutable_list_mixin.darttemplate
|
| index 441b918702b89fef8a275994bcdb4b7505262044..5ed970c6ee4f8f66155b67d5c1d89acaf8403e3d 100644
|
| --- a/sdk/lib/html/templates/immutable_list_mixin.darttemplate
|
| +++ b/sdk/lib/html/templates/immutable_list_mixin.darttemplate
|
| @@ -34,8 +34,7 @@ $endif
|
|
|
| Iterable mappedBy(f($E element)) => new MappedIterable(this, f);
|
|
|
| - Collection<$E> where(bool f($E element)) =>
|
| - _Collections.where(this, <$E>[], f);
|
| + Iterable<$E> where(bool f($E element)) => new FilteredIterable<$E>(this, f);
|
|
|
| bool every(bool f($E element)) => _Collections.every(this, f);
|
|
|
|
|