Index: lib/coreimpl/linked_hash_map.dart |
diff --git a/lib/coreimpl/linked_hash_map.dart b/lib/coreimpl/linked_hash_map.dart |
index 7f42fae2ecad4b0974d0497f07b5561bf7e4f792..353402857e56e9770a63b35fb6a3a7d4a70209b9 100644 |
--- a/lib/coreimpl/linked_hash_map.dart |
+++ b/lib/coreimpl/linked_hash_map.dart |
@@ -65,7 +65,7 @@ class LinkedHashMapImplementation<K, V> |
return value; |
} |
- Collection<K> getKeys() { |
+ Collection<K> get keys { |
List<K> list = new List<K>(length); |
int index = 0; |
_list.forEach(void _(KeyValuePair<K, V> entry) { |
@@ -76,7 +76,7 @@ class LinkedHashMapImplementation<K, V> |
} |
- Collection<V> getValues() { |
+ Collection<V> get values { |
List<V> list = new List<V>(length); |
int index = 0; |
_list.forEach(void _(KeyValuePair<K, V> entry) { |