Chromium Code Reviews| Index: runtime/lib/growable_array.dart |
| diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart |
| index af72b8b1ebb3ae2419a5a84185a2425bda060eca..0bdad990712eeb9352513ba1f290a0229b9a367f 100644 |
| --- a/runtime/lib/growable_array.dart |
| +++ b/runtime/lib/growable_array.dart |
| @@ -215,7 +215,5 @@ class _GrowableObjectArray<T> implements List<T> { |
| return Collections.collectionToString(this); |
| } |
| - Iterator<T> iterator() { |
| - return new SequenceIterator<T>(this); |
| - } |
| + Iterator<T> get iterator => new SequenceIterator<T>(this); |
|
Ivan Posva
2012/11/26 18:20:13
ditto
floitsch
2012/11/28 13:44:34
Done.
|
| } |