Chromium Code Reviews| Index: dart/sdk/lib/core/iterable.dart |
| =================================================================== |
| --- dart/sdk/lib/core/iterable.dart (revision 18634) |
| +++ dart/sdk/lib/core/iterable.dart (working copy) |
| @@ -51,12 +51,6 @@ |
| Iterable map(f(E element)) => new MappedIterable<E, dynamic>(this, f); |
| /** |
| - * Deprecated alias for [map]. |
| - */ |
| - @deprecated |
| - Iterable mappedBy(f(E element)) => map(f); |
| - |
| - /** |
| * Returns a lazy [Iterable] with all elements that satisfy the |
| * predicate [f]. |
| * |