| Index: sdk/lib/collection/iterator.dart
|
| diff --git a/sdk/lib/collection/iterator.dart b/sdk/lib/collection/iterator.dart
|
| index 1fe49cd2dc4d1ea84e27e2d2cbed7a9d7ae3003f..f8707113a771a892b550173eec20ff8b97344ccf 100644
|
| --- a/sdk/lib/collection/iterator.dart
|
| +++ b/sdk/lib/collection/iterator.dart
|
| @@ -15,7 +15,7 @@ class HasNextIterator<E> {
|
| static const int _NO_NEXT = 1;
|
| static const int _NOT_MOVED_YET = 2;
|
|
|
| - Iterator _iterator;
|
| + Iterator<E> _iterator;
|
| int _state = _NOT_MOVED_YET;
|
|
|
| HasNextIterator(this._iterator);
|
|
|