Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Unified Diff: sdk/lib/core/collection.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/core/collection.dart
diff --git a/sdk/lib/core/collection.dart b/sdk/lib/core/collection.dart
index 6a725a1b84cda27aa8d246ae139f4b7913c854bd..9982f7463bd3026e7c47622f74936a8aab1a8b43 100644
--- a/sdk/lib/core/collection.dart
+++ b/sdk/lib/core/collection.dart
@@ -18,7 +18,7 @@ part of dart.core;
*
* *Deprecated*: This class is deprecated and will be removed soon.
*/
-abstract class Collection<E> extends Iterable<E> {
+abstract class Collection<E> extends IterableBase<E> {
const Collection();
/**

Powered by Google App Engine
This is Rietveld 408576698