Index: sdk/lib/core/map.dart |
diff --git a/sdk/lib/core/map.dart b/sdk/lib/core/map.dart |
index 1c29a90f5398ef4d381d00ba6bfde9eb2402c38f..2c6155639b09514ea1c0f7ab8b45eb64af8f0cc1 100644 |
--- a/sdk/lib/core/map.dart |
+++ b/sdk/lib/core/map.dart |
@@ -135,8 +135,8 @@ abstract class Map<K, V> { |
* |
* The two [Iterable]s must have the same length. |
*/ |
- factory Map.fromIterables(Iterable<K> keys, Iterable<V> values) |
- = LinkedHashMap<K, V>.fromIterables; |
+ factory Map.fromIterables(Iterable<K> keys, Iterable<V> values) = |
+ LinkedHashMap<K, V>.fromIterables; |
/** |
* Returns true if this map contains the given [value]. |