diff --git a/lib/src/collection/lru_map.dart b/lib/src/collection/lru_map.dart index aacc9cac..af6d3885 100644 --- a/lib/src/collection/lru_map.dart +++ b/lib/src/collection/lru_map.dart @@ -103,8 +103,8 @@ class LinkedLruHashMap implements LruMap { bool containsValue(Object value) => values.contains(value); @override - Iterable> get entries => - _entries.values.map((entry) => new MapEntry(entry.key, entry.value)); + Iterable> get entries => _entries.values + .map((entry) => new MapEntry(entry.key, entry.value)); /// Applies [action] to each key-value pair of the map in order of MRU to /// LRU.