Index: samples/swarm/DataSource.dart |
diff --git a/samples/swarm/DataSource.dart b/samples/swarm/DataSource.dart |
index 21bf97d58e11aa864bfdc4ee661df14bbdd3a1ee..dfb352dc85145d10bf0957fae82c43adfda533f6 100644 |
--- a/samples/swarm/DataSource.dart |
+++ b/samples/swarm/DataSource.dart |
@@ -99,7 +99,7 @@ class Sections implements Collection<Section> { |
void forEach(void f(Section element)) { Collections.forEach(this, f); } |
// TODO(jmesserly): this should be a property |
- bool isEmpty() => length == 0; |
+ bool get isEmpty => length == 0; |
} |