Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
srawlins committed Mar 16, 2018
1 parent 74fe213 commit 849c67b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/collection/lru_map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ class LinkedLruHashMap<K, V> implements LruMap<K, V> {
bool containsValue(Object value) => values.contains(value);

@override
Iterable<MapEntry<K, V>> get entries =>
_entries.values.map((entry) => new MapEntry<K, V>(entry.key, entry.value));
Iterable<MapEntry<K, V>> get entries => _entries.values
.map((entry) => new MapEntry<K, V>(entry.key, entry.value));

/// Applies [action] to each key-value pair of the map in order of MRU to
/// LRU.
Expand Down

0 comments on commit 849c67b

Please sign in to comment.