Chromium Code Reviews| Index: sdk/lib/_collection_dev/iterable.dart |
| diff --git a/sdk/lib/_collection_dev/iterable.dart b/sdk/lib/_collection_dev/iterable.dart |
| index 53b297fed022b7dc9d4edcac12ec6daff9bd1ae5..a33b4a0675e9599a1fbad983351d922757fdcbe5 100644 |
| --- a/sdk/lib/_collection_dev/iterable.dart |
| +++ b/sdk/lib/_collection_dev/iterable.dart |
| @@ -694,7 +694,7 @@ abstract class BidirectionalIterator<T> implements Iterator<T> { |
| class IterableMixinWorkaround { |
| static bool contains(Iterable iterable, var element) { |
| for (final e in iterable) { |
| - if (element == e) return true; |
| + if (e == element) return true; |
|
Lasse Reichstein Nielsen
2013/06/26 08:26:59
Excellent!
|
| } |
| return false; |
| } |