| Index: sdk/lib/collection/collections.dart
|
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart
|
| index 29fe0deb40102ad863fbc471c1165b4e61724e51..df0f412436462dd1ba6e7591a48d160b8042e726 100644
|
| --- a/sdk/lib/collection/collections.dart
|
| +++ b/sdk/lib/collection/collections.dart
|
| @@ -59,7 +59,7 @@ class Collections {
|
| }
|
|
|
| static bool isEmpty(Iterable iterable) {
|
| - return !iterable.iterator().hasNext;
|
| + return !iterable.iterator.moveNext();
|
| }
|
|
|
| // TODO(jjb): visiting list should be an identityHashSet when it exists
|
|
|