Index: sdk/lib/collection/maps.dart |
diff --git a/sdk/lib/collection/maps.dart b/sdk/lib/collection/maps.dart |
index d239dcd3eb791a273417eae37803280a2f6c0d70..b4eef3f72044d02e4d8bbdb05db9c755c4028545 100644 |
--- a/sdk/lib/collection/maps.dart |
+++ b/sdk/lib/collection/maps.dart |
@@ -51,7 +51,7 @@ class Maps { |
} |
static Iterable getValues(Map map) { |
- return map.keys.mappedBy((key) => map[key]); |
+ return map.keys.map((key) => map[key]); |
} |
static int length(Map map) => map.keys.length; |