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

Unified Diff: sdk/lib/html/html_common/filtered_element_list.dart

Issue 13528004: Remove addLast from List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
Index: sdk/lib/html/html_common/filtered_element_list.dart
diff --git a/sdk/lib/html/html_common/filtered_element_list.dart b/sdk/lib/html/html_common/filtered_element_list.dart
index 5c07fe12f6c4341af501a6b554a550f73dd50afb..357ff5faa2f38a6a72eb0e9adab512fd9e336343 100644
--- a/sdk/lib/html/html_common/filtered_element_list.dart
+++ b/sdk/lib/html/html_common/filtered_element_list.dart
@@ -61,10 +61,6 @@ class FilteredElementList implements List {
}
}
- void addLast(Element value) {
- add(value);
- }
-
bool contains(Element element) {
return element is Element && _childNodes.contains(element);
}

Powered by Google App Engine
This is Rietveld 408576698