Index: samples/swarm/DataSource.dart |
diff --git a/samples/swarm/DataSource.dart b/samples/swarm/DataSource.dart |
index df9d3efdc08e5d3b521dc4d0367f5124ab976978..7a2f9a6d8d99791973318a1f8659174c3d18c96a 100644 |
--- a/samples/swarm/DataSource.dart |
+++ b/samples/swarm/DataSource.dart |
@@ -16,7 +16,7 @@ class Sections extends Collection<Section> { |
int get length => _sections.length; |
List<String> get sectionTitles => |
- _sections.mappedBy((s) => s.title).toList(); |
+ _sections.map((s) => s.title).toList(); |
void refresh() { |
// TODO(jimhug): http://b/issue?id=5351067 |