Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: sky/sdk/lib/app/view.dart

Issue 1185283004: fix analyzer warnings in stocks app (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/examples/stocks2/lib/stock_settings.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/app/view.dart
diff --git a/sky/sdk/lib/app/view.dart b/sky/sdk/lib/app/view.dart
index e4fe302afc9ac6f8901362e0702ef3c944b3b554..d1316c043dfd17031796456f21b13bcd9e731621 100644
--- a/sky/sdk/lib/app/view.dart
+++ b/sky/sdk/lib/app/view.dart
@@ -55,7 +55,7 @@ class AppView {
final List<EventListener> _eventListeners = new List<EventListener>();
void addEventListener(EventListener e) => _eventListeners.add(e);
- void removeEventListener(EventListener e) => _eventListeners.remove(e);
+ bool removeEventListener(EventListener e) => _eventListeners.remove(e);
RenderBox get root => _renderView.child;
void set root(RenderBox value) {
« no previous file with comments | « sky/examples/stocks2/lib/stock_settings.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698