Chromium Code Reviews| Index: lib/core/collection.dart |
| diff --git a/lib/core/collection.dart b/lib/core/collection.dart |
| index 35265256572e24f661162c0f32e33004ae20170e..51ffc39761c0ec4c42702eb6f6c8db62ef0abe26 100644 |
| --- a/lib/core/collection.dart |
| +++ b/lib/core/collection.dart |
| @@ -95,5 +95,5 @@ abstract class Collection<E> extends Iterable<E> { |
| /** |
| * Returns true if there is no element in this collection. |
| */ |
| - bool isEmpty() => !iterator().hasNext; |
| + bool get isEmpty => !iterator().hasNext; |
| } |