| Index: sdk/lib/collection/hash_set.dart
|
| diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart
|
| index c459f9900b21696e1fd3869479120f60e2393d49..68b28807340d60e28b593ab3716377821c047908 100644
|
| --- a/sdk/lib/collection/hash_set.dart
|
| +++ b/sdk/lib/collection/hash_set.dart
|
| @@ -7,8 +7,8 @@ part of dart.collection;
|
| /** Common parts of [HashSet] and [LinkedHashSet] implementations. */
|
| abstract class _HashSetBase<E> extends IterableBase<E> implements Set<E> {
|
| // Set.
|
| - bool containsAll(Iterable<E> other) {
|
| - for (E object in other) {
|
| + bool containsAll(Iterable<Object> other) {
|
| + for (Object object in other) {
|
| if (!this.contains(object)) return false;
|
| }
|
| return true;
|
|
|