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

Unified Diff: tools/dom/src/WrappedList.dart

Issue 13956006: Remove insertRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Replace type with var.wq Created 7 years, 8 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: tools/dom/src/WrappedList.dart
diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
index fcdcd065f38b56e57551b661a11a9fe36963e35c..7bec71467e80db72ed5902376a9b4c152f54cf80 100644
--- a/tools/dom/src/WrappedList.dart
+++ b/tools/dom/src/WrappedList.dart
@@ -118,10 +118,6 @@ class _WrappedList<E> implements List<E> {
void removeRange(int start, int end) { _list.removeRange(start, end); }
- void insertRange(int start, int length, [E fill]) {
- _list.insertRange(start, length, fill);
- }
-
Map<int, E> asMap() => _list.asMap();
String toString() {

Powered by Google App Engine
This is Rietveld 408576698