Index: samples/third_party/todomvc/web/todo_row.dart |
diff --git a/samples/third_party/todomvc/web/todo_row.dart b/samples/third_party/todomvc/web/todo_row.dart |
index 3ed6d8dc4b331df15818702ba452345ecf10df1f..3c8327f061f32b517e8837465da5a867507fd0a6 100644 |
--- a/samples/third_party/todomvc/web/todo_row.dart |
+++ b/samples/third_party/todomvc/web/todo_row.dart |
@@ -29,5 +29,5 @@ class TodoRow extends LIElement with Polymer, Observable { |
bindCssClass(item, 'editing', label, 'editing'); |
} |
- void removeTodo() => appModel.todos.remove(todo); |
+ void removeTodo() { appModel.todos.remove(todo); } |
Siggi Cherem (dart-lang)
2013/10/21 21:07:42
I can swear we had fixed this before
Jennifer Messerly
2013/10/21 21:42:56
yeah, not sure :)
|
} |