| Index: sdk/lib/collection/collections.dart
|
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart
|
| index df0f412436462dd1ba6e7591a48d160b8042e726..d0f9c8e865b57a21f6beee7b1a5679c64390046c 100644
|
| --- a/sdk/lib/collection/collections.dart
|
| +++ b/sdk/lib/collection/collections.dart
|
| @@ -35,13 +35,6 @@ class Collections {
|
| return true;
|
| }
|
|
|
| - static List mappedBy(Iterable source, List destination, f(o)) {
|
| - for (final e in source) {
|
| - destination.add(f(e));
|
| - }
|
| - return destination;
|
| - }
|
| -
|
| static Dynamic reduce(Iterable iterable,
|
| Dynamic initialValue,
|
| Dynamic combine(Dynamic previousValue, element)) {
|
|
|