| Index: runtime/lib/collection_patch.dart
|
| diff --git a/runtime/lib/collection_patch.dart b/runtime/lib/collection_patch.dart
|
| index d2331c37030574eeb62da48fe3f2f32c72ac2d14..cdee5c45cf7e245f690b19378e7b0b39a38267b5 100644
|
| --- a/runtime/lib/collection_patch.dart
|
| +++ b/runtime/lib/collection_patch.dart
|
| @@ -845,7 +845,7 @@ class _LinkedHashMapValueIterable<V> extends IterableBase<V>
|
| implements EfficientLength {
|
| LinkedHashMap<dynamic, V> _map;
|
| _LinkedHashMapValueIterable(this._map);
|
| - Iterator<K> get iterator => new _LinkedHashMapValueIterator<V>(_map);
|
| + Iterator<V> get iterator => new _LinkedHashMapValueIterator<V>(_map);
|
| bool contains(Object value) => _map.containsValue(value);
|
| bool get isEmpty => _map.isEmpty;
|
| bool get isNotEmpty => _map.isNotEmpty;
|
|
|